forked from qt-creator/qt-creator
QbsProjectManager: Fix warning
"this statement may fall through [-Wimplicit-fallthrough=]" Change-Id: I3497a25834b77a2266e9b46d1f7365b5fdf72239 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -156,7 +156,7 @@ static QString architecture(const ProjectExplorer::Abi &targetAbi)
|
||||
switch (targetAbi.architecture()) {
|
||||
case ProjectExplorer::Abi::X86Architecture:
|
||||
architecture.append(QLatin1Char('_'));
|
||||
// fall through
|
||||
[[fallthrough]];
|
||||
case ProjectExplorer::Abi::ArmArchitecture:
|
||||
// ARM sub-architectures are currently not handled, which is kind of problematic
|
||||
case ProjectExplorer::Abi::MipsArchitecture:
|
||||
|
Reference in New Issue
Block a user