Skip to content

Commit

Permalink
Upgrade LLVM to v15.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcserep committed Feb 7, 2024
1 parent f589d15 commit cf51aed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/cpp/parser/src/clangastvisitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -1775,7 +1775,7 @@ class ClangASTVisitor : public clang::RecursiveASTVisitor<ClangASTVisitor>
clang::DynTypedNodeList parents
= _astContext.getParents(*expr_);

const clang::ast_type_traits::DynTypedNode& parent = parents[0];
const clang::DynTypedNode& parent = parents[0];

if (const clang::BinaryOperator* op = parent.get<clang::BinaryOperator>())
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/cpp/parser/src/ppincludecallback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void PPIncludeCallback::InclusionDirective(
clang::StringRef fileName_,
bool,
clang::CharSourceRange filenameRange_,
const clang::FileEntry*,
clang::Optional<clang::FileEntryRef>,
clang::StringRef searchPath_,
clang::StringRef,
const clang::Module*,
Expand Down
2 changes: 1 addition & 1 deletion plugins/cpp/parser/src/ppincludecallback.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PPIncludeCallback : public clang::PPCallbacks
clang::StringRef FileName,
bool IsAngled,
clang::CharSourceRange FilenameRange,
const clang::FileEntry *File,
clang::Optional<clang::FileEntryRef> File,
clang::StringRef SearchPath,
clang::StringRef RelativePath,
const clang::Module *Imported,
Expand Down

0 comments on commit cf51aed

Please sign in to comment.