diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2014-06-06 11:04:46 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2014-06-06 11:04:46 +0000 |
commit | eae19460a75801781d3137a535741599a98fc807 (patch) | |
tree | 6f3325227b028213ff9580fcb1efef524d574786 /clang/tools/c-index-test | |
parent | f2a380325d78847b0aae8a4366ae989e0d5aad97 (diff) | |
download | bcm5719-llvm-eae19460a75801781d3137a535741599a98fc807.tar.gz bcm5719-llvm-eae19460a75801781d3137a535741599a98fc807.zip |
Fix C++ style // comments in a couple of C files
llvm-svn: 210325
Diffstat (limited to 'clang/tools/c-index-test')
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index 576f3c4a589..07be22a5e94 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/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); } |