diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-24 17:19:06 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2019-08-24 17:19:06 +0000 |
commit | 3c614f7b482aa1f990ade3356d828c8a94b69466 (patch) | |
tree | 83cefc017e668c931aea8ea9c1eb5044e80f0145 /clang-tools-extra/test/clang-tidy/duplicate-reports.cpp | |
parent | aa5ef3887c0ed66e271ee00fc0cf2b1ead766b1c (diff) | |
download | bcm5719-llvm-3c614f7b482aa1f990ade3356d828c8a94b69466.tar.gz bcm5719-llvm-3c614f7b482aa1f990ade3356d828c8a94b69466.zip |
[clang-tidy] Manually enable exceptions in tesst that uses them
llvm-svn: 369853
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/duplicate-reports.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/duplicate-reports.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/duplicate-reports.cpp b/clang-tools-extra/test/clang-tidy/duplicate-reports.cpp index c825c2ca243..393c91566de 100644 --- a/clang-tools-extra/test/clang-tidy/duplicate-reports.cpp +++ b/clang-tools-extra/test/clang-tidy/duplicate-reports.cpp @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s cert-err09-cpp,cert-err61-cpp %t +// RUN: %check_clang_tidy %s cert-err09-cpp,cert-err61-cpp %t -- -- -fexceptions void alwaysThrows() { int ex = 42; |