diff options
author | Zachary Turner <zturner@google.com> | 2015-02-18 18:44:03 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-02-18 18:44:03 +0000 |
commit | 568b0de17091aea712d411d15ff2ecf8b947b7c5 (patch) | |
tree | e0cdb11430937bd135ffa05f56ac3ac7ad033193 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | |
parent | 428c605dff38347495060e5df983bbc7df3c67df (diff) | |
download | bcm5719-llvm-568b0de17091aea712d411d15ff2ecf8b947b7c5.tar.gz bcm5719-llvm-568b0de17091aea712d411d15ff2ecf8b947b7c5.zip |
Fix warning that not all control-paths return from function.
llvm-svn: 229718
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 4beeade241d..8e2fd546732 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -383,7 +383,7 @@ public: case eWatchpointWrite: return m_supports_z2; case eWatchpointRead: return m_supports_z3; case eWatchpointReadWrite: return m_supports_z4; - case eStoppointInvalid: return false; + default: return false; } } uint8_t |