[clang-tools-extra] r249905 - Explicitly enable -fcxx-exceptions for this test to appease Windows build bots.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 9 14:15:00 PDT 2015
Author: aaronballman
Date: Fri Oct 9 16:15:00 2015
New Revision: 249905
URL: http://llvm.org/viewvc/llvm-project?rev=249905&view=rev
Log:
Explicitly enable -fcxx-exceptions for this test to appease Windows build bots.
Modified:
clang-tools-extra/trunk/test/clang-tidy/misc-throw-by-value-catch-by-reference.cpp
Modified: clang-tools-extra/trunk/test/clang-tidy/misc-throw-by-value-catch-by-reference.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/misc-throw-by-value-catch-by-reference.cpp?rev=249905&r1=249904&r2=249905&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/misc-throw-by-value-catch-by-reference.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/misc-throw-by-value-catch-by-reference.cpp Fri Oct 9 16:15:00 2015
@@ -1,4 +1,4 @@
-// RUN: %python %S/check_clang_tidy.py %s misc-throw-by-value-catch-by-reference %t
+// RUN: %python %S/check_clang_tidy.py %s misc-throw-by-value-catch-by-reference %t -- -std=c++11 -fcxx-exceptions
class logic_error {
More information about the cfe-commits
mailing list