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/qml/qmlcppengine.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/qml/qmlcppengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 910c652439..09e4144b82 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -630,6 +630,7 @@ void QmlCppEngine::slaveEngineStateChanged case InferiorRunRequested: // can happen if qml engine was active notifyInferiorRunFailed(); + break; default: CHECK_STATE(InferiorStopOk); break; |