summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2014-06-06 11:04:46 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2014-06-06 11:04:46 +0000
commit074f566e77c00adf47a771574b823142df3f9167 (patch)
tree1cf8081336bd8a9622bbd80dddc4466f5bb1642f /tools
parentfd58aa45476a5e725ddde5b8946b3f8da2f709f1 (diff)
downloadclang-074f566e77c00adf47a771574b823142df3f9167.tar.gz
clang-074f566e77c00adf47a771574b823142df3f9167.tar.bz2
clang-074f566e77c00adf47a771574b823142df3f9167.tar.xz
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
Diffstat (limited to 'tools')
-rw-r--r--tools/c-arcmt-test/c-arcmt-test.c4
-rw-r--r--tools/c-index-test/c-index-test.c4
2 files changed, 4 insertions, 4 deletions
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);
}