fix(tidy): Regex

This commit is contained in:
Dennis Klein 2022-05-18 09:49:33 +02:00
parent 9297308f8a
commit a48344bb03

View File

@ -26,7 +26,7 @@ struct ModernizeNonNamespacedTypes
// https://clang.llvm.org/docs/LibASTMatchersReference.html
finder.addMatcher(
typeLoc(loc(qualType(hasDeclaration(namedDecl(matchesName("FairMQ.*")).bind("decl")))))
typeLoc(loc(qualType(hasDeclaration(namedDecl(matchesName("::FairMQ")).bind("decl")))))
.bind("loc"),
&fCallback);
}