diff options
author | Alexander Kornienko <alexfh@google.com> | 2017-06-08 22:25:23 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2017-06-08 22:25:23 +0000 |
commit | 934b516a0aa56a9da562e5b09497ce39649653f9 (patch) | |
tree | 0b3a344bcf3e8eb9701502765d0c42c9b88dd527 /clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp | |
parent | dc8c01891f48d6a24f6e87ff00dfafd63262d791 (diff) | |
download | bcm5719-llvm-934b516a0aa56a9da562e5b09497ce39649653f9.tar.gz bcm5719-llvm-934b516a0aa56a9da562e5b09497ce39649653f9.zip |
[clang-tidy] Use -fexceptions explicitly in the tests that need exceptions.
This should fix relevant buildbot breakages.
llvm-svn: 305024
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp b/clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp index 8c305e7dec1..85a83c81d07 100644 --- a/clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp +++ b/clang-tools-extra/test/clang-tidy/modernize-use-noexcept-opt.cpp @@ -1,6 +1,6 @@ // RUN: %check_clang_tidy %s modernize-use-noexcept %t -- \ // RUN: -config="{CheckOptions: [{key: modernize-use-noexcept.UseNoexceptFalse, value: 0}]}" \ -// RUN: -- -std=c++11 +// RUN: -- -std=c++11 -fexceptions class A {}; class B {}; |