diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2016-02-07 18:21:28 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2016-02-07 18:21:28 +0000 |
commit | a0a35d7f8738dd2575f99fe7fa99b30efa39cf38 (patch) | |
tree | 35fff28604424c44c1c49201cfbf565ff86a76a1 /clang/include/clang-c | |
parent | 927e986ac4903cdd7be4fba98a1aea80c5d7bdb7 (diff) | |
download | bcm5719-llvm-a0a35d7f8738dd2575f99fe7fa99b30efa39cf38.tar.gz bcm5719-llvm-a0a35d7f8738dd2575f99fe7fa99b30efa39cf38.zip |
[libclang] Add missing CINDEX_LINKAGE from a function.
llvm-svn: 260047
Diffstat (limited to 'clang/include/clang-c')
-rw-r--r-- | clang/include/clang-c/Index.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang-c/Index.h b/clang/include/clang-c/Index.h index c29a201d848..928412682cf 100644 --- a/clang/include/clang-c/Index.h +++ b/clang/include/clang-c/Index.h @@ -3656,8 +3656,8 @@ typedef enum CXChildVisitResult * Visits the children of a cursor using the specified block. Behaves * identically to clang_visitChildren() in all other respects. */ -unsigned clang_visitChildrenWithBlock(CXCursor parent, - CXCursorVisitorBlock block); +CINDEX_LINKAGE unsigned clang_visitChildrenWithBlock(CXCursor parent, + CXCursorVisitorBlock block); # endif #endif |