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:
hjk
2023-04-20 16:05:06 +02:00
parent ea94891f6b
commit 4e847cfb49

View File

@@ -156,7 +156,7 @@ static QString architecture(const ProjectExplorer::Abi &targetAbi)
switch (targetAbi.architecture()) { switch (targetAbi.architecture()) {
case ProjectExplorer::Abi::X86Architecture: case ProjectExplorer::Abi::X86Architecture:
architecture.append(QLatin1Char('_')); architecture.append(QLatin1Char('_'));
// fall through [[fallthrough]];
case ProjectExplorer::Abi::ArmArchitecture: case ProjectExplorer::Abi::ArmArchitecture:
// ARM sub-architectures are currently not handled, which is kind of problematic // ARM sub-architectures are currently not handled, which is kind of problematic
case ProjectExplorer::Abi::MipsArchitecture: case ProjectExplorer::Abi::MipsArchitecture: