Skip to content

Commit eec99ae

Browse files
efriedma-quicllvmbot
authored andcommitted
[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 116110e)
1 parent 6296ebd commit eec99ae

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)