From e607463f6890352b6720311b6fe500f0800fc9e5 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 28 Jun 2023 08:31:57 +0200 Subject: [PATCH] Qmake: Fix a warning qmakeevaluator.cpp:297:13: warning: this statement may fall through [-Wimplicit-fallthrough=] Change-Id: I157ba28e438b623d41dc7444c1381ecd649d3425 Reviewed-by: Eike Ziller --- src/shared/proparser/qmakeevaluator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/proparser/qmakeevaluator.cpp b/src/shared/proparser/qmakeevaluator.cpp index ced40f106d0..e8d2ee32f16 100644 --- a/src/shared/proparser/qmakeevaluator.cpp +++ b/src/shared/proparser/qmakeevaluator.cpp @@ -295,7 +295,8 @@ ProStringList QMakeEvaluator::split_value_list(QStringView vals, int source) --x; } } - // fallthrough + hadWord = true; + break; default: hadWord = true; break;