diff options
| author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2017-06-02 16:12:39 +0300 |
|---|---|---|
| committer | Orgad Shaneh <orgads@gmail.com> | 2017-06-10 20:40:31 +0000 |
| commit | 8116cb39e114bf50ffa4917dbdedbb1bb06a51bb (patch) | |
| tree | 36799cf619e421dda8ad2b359c9418a0cdac2fe0 /src/plugins/debugger/debuggerprotocol.cpp | |
| parent | 48392fac9e35203cc57796c4a346ff55f2a72070 (diff) | |
| download | qt-creator-8116cb39e114bf50ffa4917dbdedbb1bb06a51bb.tar.gz | |
Debugger: Add missing breaks in switch statements
Detected by GCC7
Change-Id: Ic4a1f0adac486d3f6d0f7da15b24e983c17225f3
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/plugins/debugger/debuggerprotocol.cpp')
| -rw-r--r-- | src/plugins/debugger/debuggerprotocol.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp index ba28994589..8cd7d41bbe 100644 --- a/src/plugins/debugger/debuggerprotocol.cpp +++ b/src/plugins/debugger/debuggerprotocol.cpp @@ -660,6 +660,7 @@ QString decodeData(const QString &ba, const QString &encoding) union { char c[8]; double d; } u = {{s[7], s[6], s[5], s[4], s[3], s[2], s[1], s[0]}}; return QString::number(u.d); } + break; } case DebuggerEncoding::IPv6AddressAndHexScopeId: { // 16 hex-encoded bytes, "%" and the string-encoded scope const int p = ba.indexOf('%'); |
