aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Verbruggen <erikjv@me.com>2011-09-19 15:03:11 +0000
committerErik Verbruggen <erikjv@me.com>2011-09-19 15:03:11 +0000
commitb81d3012ff46e99c0373ef67b1481150a1dd8609 (patch)
tree865b85b194c6b7c43f0c20717e8fa82c0477843b
parenta495066d3cc094b3eb5edb4efbdb169da1f67841 (diff)
First test commit.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140016 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/libclang/CIndex.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/libclang/CIndex.cpp b/tools/libclang/CIndex.cpp
index 51749d7849..25434164f4 100644
--- a/tools/libclang/CIndex.cpp
+++ b/tools/libclang/CIndex.cpp
@@ -5478,7 +5478,6 @@ unsigned clang_CXXMethod_isVirtual(CXCursor C) {
Method = dyn_cast_or_null<CXXMethodDecl>(D);
return (Method && Method->isVirtual()) ? 1 : 0;
}
-
} // end: extern "C"
//===----------------------------------------------------------------------===//