diff --git a/lib/symboldatabase.cpp b/lib/symboldatabase.cpp index e420564a0..ca6899066 100644 --- a/lib/symboldatabase.cpp +++ b/lib/symboldatabase.cpp @@ -2208,7 +2208,7 @@ Function::Function(const Tokenizer *mTokenizer, else type = Function::eConstructor; - isExplicit(tokenDef->previous()->str() == "explicit"); + isExplicit(tokenDef->strAt(-1) == "explicit" || tokenDef->strAt(-2) == "explicit"); } const Token *tok1 = setFlags(tok, scope); diff --git a/test/testclass.cpp b/test/testclass.cpp index a219c7cac..d4b37eaf9 100644 --- a/test/testclass.cpp +++ b/test/testclass.cpp @@ -444,6 +444,19 @@ private: " A(int, int y=2) {}" "};"); ASSERT_EQUALS("[test.cpp:1]: (style) Struct 'A' has a constructor with 1 argument that is not explicit.\n", errout.str()); + + checkExplicitConstructors("struct Foo {\n" + " template \n" + " explicit constexpr Foo(T) {}\n" + "};\n" + "struct Bar {\n" + " template \n" + " constexpr explicit Bar(T) {}\n" + "};\n" + "struct Baz {\n" + " explicit constexpr Baz(int) {}\n" + "};\n"); + ASSERT_EQUALS("", errout.str()); } #define checkDuplInheritedMembers(code) checkDuplInheritedMembers_(code, __FILE__, __LINE__)