forked from OSchip/llvm-project
Fix warning: 'warning: C++ style comments are not allowed in ISO C90'
llvm-svn: 84317
This commit is contained in:
parent
0818d87ed1
commit
bbf7fa317a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue