diff options
-rw-r--r-- | tools/libclang/CIndex.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp index 16cd309b31..9de7c0b06e 100644 --- a/tools/libclang/CIndex.cpp +++ b/tools/libclang/CIndex.cpp @@ -2763,6 +2763,7 @@ unsigned clang_CXXMethod_isStatic(CXCursor C) { return 0; CXXMethodDecl *D = dyn_cast<CXXMethodDecl>(cxcursor::getCursorDecl(C)); return (D && D->isStatic()) ? 1 : 0; +} } // end: extern "C" //===----------------------------------------------------------------------===// |