diff options
author | Alexander Kornienko <alexfh@google.com> | 2016-02-02 17:27:08 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2016-02-02 17:27:08 +0000 |
commit | abf22eb5449c2231492734fcd8124de7d797c12d (patch) | |
tree | 76b70c4c54f5808b77732acc3e39dc12d408af7f /clang-tools-extra/test/clang-tidy/google-runtime-references.cpp | |
parent | 26e46d8fae7f3f38f1d86bcb20473b262c835d77 (diff) | |
download | bcm5719-llvm-abf22eb5449c2231492734fcd8124de7d797c12d.tar.gz bcm5719-llvm-abf22eb5449c2231492734fcd8124de7d797c12d.zip |
[clang-tidy] Removed unnecessary parameters in the test
llvm-svn: 259531
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/google-runtime-references.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/google-runtime-references.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/google-runtime-references.cpp b/clang-tools-extra/test/clang-tidy/google-runtime-references.cpp index fc82a8feb18..96d82a47e22 100644 --- a/clang-tools-extra/test/clang-tidy/google-runtime-references.cpp +++ b/clang-tools-extra/test/clang-tidy/google-runtime-references.cpp @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s google-runtime-references %t -- -- -std=c++11 +// RUN: %check_clang_tidy %s google-runtime-references %t int a; int &b = a; |