[clang-tools-extra] r251503 - clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use <stddef.h> provided by clang, instead of <stdio.h>.
NAKAMURA Takumi via cfe-commits
cfe-commits at lists.llvm.org
Wed Oct 28 02:22:21 PDT 2015
Author: chapuni
Date: Wed Oct 28 04:22:21 2015
New Revision: 251503
URL: http://llvm.org/viewvc/llvm-project?rev=251503&view=rev
Log:
clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.c: Use <stddef.h> provided by clang, instead of <stdio.h>.
Modified:
clang-tools-extra/trunk/test/clang-tidy/modernize-redundant-void-arg.c
Modified: clang-tools-extra/trunk/test/clang-tidy/modernize-redundant-void-arg.c
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/modernize-redundant-void-arg.c?rev=251503&r1=251502&r2=251503&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/modernize-redundant-void-arg.c (original)
+++ clang-tools-extra/trunk/test/clang-tidy/modernize-redundant-void-arg.c Wed Oct 28 04:22:21 2015
@@ -1,6 +1,6 @@
// RUN: clang-tidy -checks=-*,modernize-redundant-void-arg %s -- -x c | count 0
-#include <stdio.h>
+#include <stddef.h>
extern int i;
More information about the cfe-commits
mailing list