forked from OSchip/llvm-project
Silence warning about C++-style comments.
llvm-svn: 106531
This commit is contained in:
parent
4505747979
commit
1e63c74f60
|
@ -459,7 +459,7 @@ static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p,
|
|||
PrintCursor(cursor);
|
||||
printf(" typekind=%s", clang_getCString(S));
|
||||
clang_disposeString(S);
|
||||
// Print the canonical type if it is different.
|
||||
/* Print the canonical type if it is different. */
|
||||
{
|
||||
CXType CT = clang_getCanonicalType(T);
|
||||
if (!clang_equalTypes(T, CT)) {
|
||||
|
@ -468,7 +468,7 @@ static enum CXChildVisitResult PrintTypeKind(CXCursor cursor, CXCursor p,
|
|||
clang_disposeString(CS);
|
||||
}
|
||||
}
|
||||
// Print the return type if it exists.
|
||||
/* Print the return type if it exists. */
|
||||
{
|
||||
CXType RT = clang_getCursorResultType(cursor);
|
||||
if (RT.kind != CXType_Invalid) {
|
||||
|
|
Loading…
Reference in New Issue