diff options
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp b/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp index 9e4c24650f6..6c09fca330b 100644 --- a/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp +++ b/clang-tools-extra/test/clang-tidy/performance-unnecessary-value-param-header.cpp @@ -1,8 +1,9 @@ // RUN: rm -rf %t // RUN: mkdir %t // RUN: cp %S/Inputs/performance-unnecessary-value-param/header.h %t/header.h -// RUN: %check_clang_tidy %s performance-unnecessary-value-param %t/temp -- -- -std=c++11 -I %t +// RUN: %check_clang_tidy -std=c++11 %s performance-unnecessary-value-param %t/temp -- -- -I %t // RUN: diff %t/header.h %S/Inputs/performance-unnecessary-value-param/header-fixed.h +// FIXME: Make the test work in all language modes. #include "header.h" |