Skip to content

Commit

Permalink
[clang-tidy] Fix compilation of modernize-use-using check
Browse files Browse the repository at this point in the history
Fix compilation issue introduced by #69102.
  • Loading branch information
PiotrZSL committed Dec 26, 2023
1 parent 583a258 commit 7a48039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang-tools-extra/clang-tidy/modernize/UseUsingCheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ using namespace clang::ast_matchers;
namespace {

AST_MATCHER(clang::LinkageSpecDecl, isExternCLinkage) {
return Node.getLanguage() == clang::LinkageSpecDecl::lang_c;
return Node.getLanguage() == clang::LinkageSpecLanguageIDs::C;
}
} // namespace

Expand Down

0 comments on commit 7a48039

Please sign in to comment.