diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-04-18 12:13:30 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-04-18 12:13:30 +0000 |
| commit | 7db18e9b66f40ba5853791dd3c2bdc1cdd38ba86 (patch) | |
| tree | 4f59c9d5259d4aa675b38f70a89b4989e888f1e6 | |
| parent | 517e3fc34ce93cd29913433d3f0a472682b76422 (diff) | |
| download | bcm5719-llvm-7db18e9b66f40ba5853791dd3c2bdc1cdd38ba86.tar.gz bcm5719-llvm-7db18e9b66f40ba5853791dd3c2bdc1cdd38ba86.zip | |
clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp: Appease targeting msvc with -fno-ms-extensions.
FIXME: This may work with -target x86_64-win32.
llvm-svn: 300545
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp b/clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp index f51c4690a25..a79b163c2cd 100644 --- a/clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp +++ b/clang-tools-extra/test/clang-tidy/performance-inefficient-vector-operation.cpp @@ -1,4 +1,5 @@ -// RUN: %check_clang_tidy %s performance-inefficient-vector-operation %t -- -format-style=llvm -- +// RUN: %check_clang_tidy %s performance-inefficient-vector-operation %t -- -format-style=llvm -- -fno-ms-extensions +// FIXME: This may work with -target x86_64-win32. typedef int size_t; |

