c/clang:referenced

This commit is contained in:
luoliwoshang
2024-10-24 09:46:52 +08:00
parent 5529a1b0b3
commit 7ebaad5099
2 changed files with 22 additions and 0 deletions

View File

@@ -115,6 +115,10 @@ CXString wrap_clang_getCursorSpelling(CXCursor *cur) { return clang_getCursorSpe
CXString wrap_clang_getCursorDisplayName(CXCursor *cur) { return clang_getCursorDisplayName(*cur); }
void wrap_clang_getCursorReferenced(CXCursor *cur, CXCursor *referenced) {
*referenced = clang_getCursorReferenced(*cur);
}
unsigned wrap_clang_Cursor_isVariadic(CXCursor *cur) { return clang_Cursor_isVariadic(*cur); }
void wrap_clang_Cursor_getCommentRange(CXCursor *cur, CXSourceRange *range) {