Fix warning: 'warning: C++ style comments are not allowed in ISO C90'

llvm-svn: 84317
This commit is contained in:
Ted Kremenek 2009-10-17 06:37:16 +00:00
parent 0818d87ed1
commit bbf7fa317a
1 changed files with 1 additions and 1 deletions

View File

@ -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);