Skip to content

Commit 3f9e2f1

Browse files
committed
[libclang] Fix version for symbol clang_visitCXXMethods
Happened to spot this while looking at libclang.map for other reasons. clang_visitCXXMethods was added in LLVM 21, not LLVM 20.
1 parent 6a99326 commit 3f9e2f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/tools/libclang/libclang.map

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,12 +435,12 @@ LLVM_20 {
435435
clang_getTypePrettyPrinted;
436436
clang_isBeforeInTranslationUnit;
437437
clang_visitCXXBaseClasses;
438-
clang_visitCXXMethods;
439438
};
440439

441440
LLVM_21 {
442441
global:
443442
clang_getFullyQualifiedName;
443+
clang_visitCXXMethods;
444444
clang_Cursor_getGCCAssemblyTemplate;
445445
clang_Cursor_isGCCAssemblyHasGoto;
446446
clang_Cursor_getGCCAssemblyNumOutputs;

0 commit comments

Comments
 (0)