]> granicus.if.org Git - clang/commitdiff
Fix missing '}'.
authorTed Kremenek <kremenek@apple.com>
Mon, 17 May 2010 20:12:45 +0000 (20:12 +0000)
committerTed Kremenek <kremenek@apple.com>
Mon, 17 May 2010 20:12:45 +0000 (20:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103966 91177308-0d34-0410-b5e6-96231b3b80d8

tools/libclang/CIndex.cpp

index 16cd309b319b0ce615f4c9398a661beac40c2e7f..9de7c0b06e8af76d5fe58c4c1ec10d70d14881fd 100644 (file)
@@ -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"
 
 //===----------------------------------------------------------------------===//