summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2017-03-27 09:42:15 +0200
committerTobias Hunger <tobias.hunger@qt.io>2017-03-27 11:54:09 +0000
commit7da1e233eb6968c395298738ef15a760e0d21da3 (patch)
treed2eba06dcf786e6672fab1e35de2705f6c26913b
parent3a20cec60ac465192d6f03613c5d924e4438e1f3 (diff)
downloadqt-creator-7da1e233eb6968c395298738ef15a760e0d21da3.tar.gz
ProjectExplorer: Add missing breaks to switch in Abi class
Change-Id: I6c855d221e7a4d81f7338bc119c7ecff815e7ea6 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--src/plugins/projectexplorer/abi.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/projectexplorer/abi.cpp b/src/plugins/projectexplorer/abi.cpp
index 28356e1583..fa504ca3b8 100644
--- a/src/plugins/projectexplorer/abi.cpp
+++ b/src/plugins/projectexplorer/abi.cpp
@@ -348,9 +348,11 @@ Abi::Abi(const Architecture &a, const OS &o,
case Abi::VxWorks:
if (m_osFlavor != VxWorksFlavor)
m_osFlavor = VxWorksFlavor;
+ break;
case Abi::QnxOS:
if (m_osFlavor != GenericQnxFlavor)
m_osFlavor = UnknownFlavor;
+ break;
}
}