Silence warning about C++-style comments.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106531 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c
index 05e2d9e..8106d20 100644
--- a/tools/c-index-test/c-index-test.c
+++ b/tools/c-index-test/c-index-test.c
@@ -459,7 +459,7 @@
     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 @@
         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) {