diff options
author | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
commit | 8f9e44406165c1f57e0b28ba159cace972220921 (patch) | |
tree | dadfa84f9f52079b918ef2959b483523aa85c24e /clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp | |
parent | 5884a1f5a61d0dbb62cc2916d14d659dd8f28fcd (diff) | |
download | bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.tar.gz bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.zip |
Switch check_clang_tidy to argparse and add a -resource-dir argument.
-resource-dir can be used to inject non-standard resource dirs via the
lit site config.
llvm-svn: 251021
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp b/clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp index 4dc4adeee71..2ba60e46fa9 100644 --- a/clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp +++ b/clang-tools-extra/test/clang-tidy/misc-new-delete-overloads-sized-dealloc.cpp @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s misc-new-delete-overloads %t -- -std=c++14 -fsized-deallocation +// RUN: %check_clang_tidy %s misc-new-delete-overloads %t -- -- -std=c++14 -fsized-deallocation typedef decltype(sizeof(int)) size_t; |