From abd52cad847e56575e6692e7f43a76e510e67b7e Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Tue, 28 Jul 2015 07:31:50 +0000 Subject: Fix a handful of tests that fail in C++03 llvm-svn: 243392 --- .../exception.terminate/terminate.handler/terminate_handler.pass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcxx/test/std/language.support/support.exception') diff --git a/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp b/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp index 46e212662a2..e477f5298e8 100644 --- a/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp +++ b/libcxx/test/std/language.support/support.exception/exception.terminate/terminate.handler/terminate_handler.pass.cpp @@ -17,7 +17,7 @@ void f() {} int main() { - static_assert(std::is_same::value, ""); + static_assert((std::is_same::value), ""); std::terminate_handler p = f; assert(p == &f); } -- cgit v1.2.3