From: Timur Iskhodzhanov Date: Fri, 6 Jun 2014 11:04:46 +0000 (+0000) Subject: Fix C++ style // comments in a couple of C files X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=074f566e77c00adf47a771574b823142df3f9167;p=clang Fix C++ style // comments in a couple of C files git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210325 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/c-arcmt-test/c-arcmt-test.c b/tools/c-arcmt-test/c-arcmt-test.c index 60faed03dc..3bbb2d5d6a 100644 --- a/tools/c-arcmt-test/c-arcmt-test.c +++ b/tools/c-arcmt-test/c-arcmt-test.c @@ -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); } diff --git a/tools/c-index-test/c-index-test.c b/tools/c-index-test/c-index-test.c index 576f3c4a58..07be22a5e9 100644 --- a/tools/c-index-test/c-index-test.c +++ b/tools/c-index-test/c-index-test.c @@ -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); }