diff options
author | Greg Clayton <gclayton@apple.com> | 2016-02-26 01:20:20 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2016-02-26 01:20:20 +0000 |
commit | cec91ef92169483fbcc85c78a65e00a6fda1c35b (patch) | |
tree | 98e18b90c6eef89526ef8ecd294b88409b2a2f57 /lldb/source/Utility/StringExtractorGDBRemote.cpp | |
parent | 5971f18133cbdece6012b3e0f54ae85877e4306f (diff) | |
download | llvm-cec91ef92169483fbcc85c78a65e00a6fda1c35b.zip llvm-cec91ef92169483fbcc85c78a65e00a6fda1c35b.tar.gz llvm-cec91ef92169483fbcc85c78a65e00a6fda1c35b.tar.bz2 |
Fix all of the unannotated switch cases to annotate the fall through or do the right thing and break.
llvm-svn: 261950
Diffstat (limited to 'lldb/source/Utility/StringExtractorGDBRemote.cpp')
-rw-r--r-- | lldb/source/Utility/StringExtractorGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Utility/StringExtractorGDBRemote.cpp b/lldb/source/Utility/StringExtractorGDBRemote.cpp index 56df0be..44bb117 100644 --- a/lldb/source/Utility/StringExtractorGDBRemote.cpp +++ b/lldb/source/Utility/StringExtractorGDBRemote.cpp @@ -227,7 +227,7 @@ StringExtractorGDBRemote::GetServerPacketType () const case 'j': if (PACKET_MATCHES("jSignalsInfo")) return eServerPacketType_jSignalsInfo; if (PACKET_MATCHES("jThreadsInfo")) return eServerPacketType_jThreadsInfo; - + break; case 'v': if (PACKET_STARTS_WITH("vFile:")) |