diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-05-17 20:12:45 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-05-17 20:12:45 +0000 |
| commit | 0ed75493432d563ce7a2604ffdea6a9e89fd1c92 (patch) | |
| tree | 266f4ea88150608de6527b351a2e616c3787c971 /clang | |
| parent | 3e294929b87ac48eb23a5f9422cf535f4fa35edd (diff) | |
| download | bcm5719-llvm-0ed75493432d563ce7a2604ffdea6a9e89fd1c92.tar.gz bcm5719-llvm-0ed75493432d563ce7a2604ffdea6a9e89fd1c92.zip | |
Fix missing '}'.
llvm-svn: 103966
Diffstat (limited to 'clang')
| -rw-r--r-- | clang/tools/libclang/CIndex.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/tools/libclang/CIndex.cpp b/clang/tools/libclang/CIndex.cpp index 16cd309b319..9de7c0b06e8 100644 --- a/clang/tools/libclang/CIndex.cpp +++ b/clang/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" //===----------------------------------------------------------------------===// |

