r210325 - Fix C++ style // comments in a couple of C files

Timur Iskhodzhanov timurrrr at google.com
Fri Jun 6 04:04:47 PDT 2014


Author: timurrrr
Date: Fri Jun  6 06:04:46 2014
New Revision: 210325

URL: http://llvm.org/viewvc/llvm-project?rev=210325&view=rev
Log:
Fix C++ style // comments in a couple of C files

Modified:
    cfe/trunk/tools/c-arcmt-test/c-arcmt-test.c
    cfe/trunk/tools/c-index-test/c-index-test.c

Modified: cfe/trunk/tools/c-arcmt-test/c-arcmt-test.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-arcmt-test/c-arcmt-test.c?rev=210325&r1=210324&r2=210325&view=diff
==============================================================================
--- cfe/trunk/tools/c-arcmt-test/c-arcmt-test.c (original)
+++ cfe/trunk/tools/c-arcmt-test/c-arcmt-test.c Fri Jun  6 06:04:46 2014
@@ -100,8 +100,8 @@ void thread_runner(void *client_data_v)
 }
 
 static void flush_atexit(void) {
-  // stdout, and surprisingly even stderr, are not always flushed on process
-  // and thread exit, particularly when the system is under heavy load.
+  /* stdout, and surprisingly even stderr, are not always flushed on process
+   * and thread exit, particularly when the system is under heavy load. */
   fflush(stdout);
   fflush(stderr);
 }

Modified: cfe/trunk/tools/c-index-test/c-index-test.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/c-index-test/c-index-test.c?rev=210325&r1=210324&r2=210325&view=diff
==============================================================================
--- cfe/trunk/tools/c-index-test/c-index-test.c (original)
+++ cfe/trunk/tools/c-index-test/c-index-test.c Fri Jun  6 06:04:46 2014
@@ -4119,8 +4119,8 @@ void thread_runner(void *client_data_v)
 }
 
 static void flush_atexit(void) {
-  // stdout, and surprisingly even stderr, are not always flushed on process
-  // and thread exit, particularly when the system is under heavy load.
+  /* stdout, and surprisingly even stderr, are not always flushed on process
+   * and thread exit, particularly when the system is under heavy load. */
   fflush(stdout);
   fflush(stderr);
 }





More information about the cfe-commits mailing list