From fac0a7d65dc49f57abf63cee111beeca776b69bb Mon Sep 17 00:00:00 2001 From: Jeremiah Willcock Date: Wed, 20 May 2009 19:41:20 +0000 Subject: [PATCH] Fixed almost all tab and min/max issues found by inspect tool [SVN r53142] --- test/optional_test_ref.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/optional_test_ref.cpp b/test/optional_test_ref.cpp index 08ee87e..c01b08e 100644 --- a/test/optional_test_ref.cpp +++ b/test/optional_test_ref.cpp @@ -342,14 +342,14 @@ void test_binding() int i = 0 ; optional ori1 = i ; BOOST_CHECK( &(*ori1) == &i ) ; - + optional ori2(i) ; BOOST_CHECK( &(*ori2) == &i ) ; - + int const ci = 0 ; optional orci1 = ci ; BOOST_CHECK( &(*orci1) == &ci ) ; - + optional orci2(ci) ; BOOST_CHECK( &(*orci2) == &ci ) ; } @@ -360,7 +360,7 @@ int test_main( int, char* [] ) { test_with_class_type(); test_with_builtin_types(); - test_binding(); + test_binding(); } catch ( ... ) {