diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-10-17 06:37:16 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-10-17 06:37:16 +0000 |
commit | bbf7fa317a777bb125df2f16fef83ba01af944e6 (patch) | |
tree | 3b3891a11a3d84aa9d9b8cba73c085d6d332c3cf | |
parent | 0818d87ed15e2c798baef81630accafe81a14519 (diff) | |
download | bcm5719-llvm-bbf7fa317a777bb125df2f16fef83ba01af944e6.tar.gz bcm5719-llvm-bbf7fa317a777bb125df2f16fef83ba01af944e6.zip |
Fix warning: 'warning: C++ style comments are not allowed in ISO C90'
llvm-svn: 84317
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index 73764950c31..1ad48266eee 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/tools/c-index-test/c-index-test.c @@ -64,7 +64,7 @@ static void TranslationUnitVisitor(CXTranslationUnit Unit, CXCursor Cursor, Ref = clang_getCursor(Unit, clang_getCursorSource(Cursor), curLine, curColumn); if (Ref.kind == CXCursor_NoDeclFound) { - // Nothing found here; that's fine. + /* Nothing found here; that's fine. */ } else if (Ref.kind != CXCursor_FunctionDecl) { printf("// CHECK: %s:%d:%d: ", basename(clang_getCursorSource(Ref)), curLine, curColumn); |