diff options
| author | Benjamin Kramer <benny.kra@googlemail.com> | 2015-10-28 05:16:37 +0000 |
|---|---|---|
| committer | Benjamin Kramer <benny.kra@googlemail.com> | 2015-10-28 05:16:37 +0000 |
| commit | e18da83bcca911d38c31a9bc31a55199ccfd2d80 (patch) | |
| tree | 548f8986438d0863af1204f854f97d6ed240d406 | |
| parent | 8d23a9bbef04ce7c4c7f5abcee535d8de151be0e (diff) | |
| download | bcm5719-llvm-e18da83bcca911d38c31a9bc31a55199ccfd2d80.tar.gz bcm5719-llvm-e18da83bcca911d38c31a9bc31a55199ccfd2d80.zip | |
[tidy] Remove stray iostream include from test.
It is unused and we cannot rely on standard headers being present while
executing tests.
llvm-svn: 251499
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.cpp b/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.cpp index 6f23fe682da..dd758bc10a2 100644 --- a/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.cpp +++ b/clang-tools-extra/test/clang-tidy/modernize-redundant-void-arg.cpp @@ -1,6 +1,6 @@ // RUN: %check_clang_tidy %s modernize-redundant-void-arg %t -#include <iostream> +#define NULL 0 int foo(); |

