From 40c5dae84c5e6b134efcbce99ebc88c6df7b5b2f Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Mon, 14 Oct 2013 21:31:19 +0000 Subject: [PATCH] Remove tabs [SVN r86310] --- test/array_constexpr.cpp | 5 ++--- test/array_getfail1.cpp | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/test/array_constexpr.cpp b/test/array_constexpr.cpp index 8d35b88..927bdec 100644 --- a/test/array_constexpr.cpp +++ b/test/array_constexpr.cpp @@ -32,12 +32,11 @@ BOOST_AUTO_TEST_CASE( test_main ) constexpr int three = arr.at (3); int whatever [ arr.at(4) ]; (void)three; - (void) whatever; + (void) whatever; } -#else // no constexpr means no constexpr tests! +#else // no constexpr means no constexpr tests! BOOST_AUTO_TEST_CASE( test_main ) { } #endif - diff --git a/test/array_getfail1.cpp b/test/array_getfail1.cpp index 3cb1f49..21ae62f 100644 --- a/test/array_getfail1.cpp +++ b/test/array_getfail1.cpp @@ -29,7 +29,7 @@ namespace { typedef T arr[5]; test_type test_case; // = { 1, 1, 2, 3, 5 }; - T &aRef = std::get<5> ( test_case ); // should fail to compile + T &aRef = std::get<5> ( test_case ); // should fail to compile BOOST_CHECK ( &*test_case.begin () == &aRef ); } #endif @@ -44,7 +44,6 @@ BOOST_AUTO_TEST_CASE( test_main ) RunStdTests< long double >(); RunStdTests< std::string >(); #else - BOOST_STATIC_ASSERT ( false ); // fail on C++03 systems. + BOOST_STATIC_ASSERT ( false ); // fail on C++03 systems. #endif } -