End a switch case with an unconditional break.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2017-02-22 19:34:29 +02:00
parent 703a26a5cf
commit 2c6f1d9f64

View File

@ -192,6 +192,7 @@ inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &con
#endif
case QtDebugMsg:
Q_UNREACHABLE(); //-V501
break;
default:
break;
}