Skip to content

Commit 7a48039

Browse files
committed
[clang-tidy] Fix compilation of modernize-use-using check
Fix compilation issue introduced by #69102.
1 parent 583a258 commit 7a48039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clang-tidy/modernize/UseUsingCheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using namespace clang::ast_matchers;
1414
namespace {
1515

1616
AST_MATCHER(clang::LinkageSpecDecl, isExternCLinkage) {
17-
return Node.getLanguage() == clang::LinkageSpecDecl::lang_c;
17+
return Node.getLanguage() == clang::LinkageSpecLanguageIDs::C;
1818
}
1919
} // namespace
2020

0 commit comments

Comments
 (0)