[libclang] Fix version for symbol clang_visitCXXMethods (#148958)
Happened to spot this while looking at libclang.map for other reasons. clang_visitCXXMethods was added in LLVM 21, not LLVM 20. (cherry picked from commit 116110e1a93531a64d82f049b6e36403bc14f278)
This commit is contained in:
parent
b71c9a4366
commit
04d4be501d
@ -435,12 +435,12 @@ LLVM_20 {
|
|||||||
clang_getTypePrettyPrinted;
|
clang_getTypePrettyPrinted;
|
||||||
clang_isBeforeInTranslationUnit;
|
clang_isBeforeInTranslationUnit;
|
||||||
clang_visitCXXBaseClasses;
|
clang_visitCXXBaseClasses;
|
||||||
clang_visitCXXMethods;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
LLVM_21 {
|
LLVM_21 {
|
||||||
global:
|
global:
|
||||||
clang_getFullyQualifiedName;
|
clang_getFullyQualifiedName;
|
||||||
|
clang_visitCXXMethods;
|
||||||
clang_Cursor_getGCCAssemblyTemplate;
|
clang_Cursor_getGCCAssemblyTemplate;
|
||||||
clang_Cursor_isGCCAssemblyHasGoto;
|
clang_Cursor_isGCCAssemblyHasGoto;
|
||||||
clang_Cursor_getGCCAssemblyNumOutputs;
|
clang_Cursor_getGCCAssemblyNumOutputs;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user