summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2016-02-07 18:21:28 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2016-02-07 18:21:28 +0000
commit99dd83c613ca0936945b135a4e96e125e4a71e31 (patch)
tree867457e8a4fb4dd8f97a04e41c6d5d1331a707f1
parent13aef9aabe6bd928a78d33733560c65122f7399f (diff)
[libclang] Add missing CINDEX_LINKAGE from a function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260047 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang-c/Index.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h
index c29a201d84..928412682c 100644
--- a/include/clang-c/Index.h
+++ b/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