[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:
Eli Friedman 2025-07-15 15:39:51 -07:00 committed by Tobias Hieta
parent b71c9a4366
commit 04d4be501d

View File

@ -435,12 +435,12 @@ LLVM_20 {
clang_getTypePrettyPrinted;
clang_isBeforeInTranslationUnit;
clang_visitCXXBaseClasses;
clang_visitCXXMethods;
};
LLVM_21 {
global:
clang_getFullyQualifiedName;
clang_visitCXXMethods;
clang_Cursor_getGCCAssemblyTemplate;
clang_Cursor_isGCCAssemblyHasGoto;
clang_Cursor_getGCCAssemblyNumOutputs;