From 72568827606c49724742e0b220e7bcf396dcd774 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Fri, 26 Nov 2010 20:16:34 +0000 Subject: [PATCH] Fix? for borland [SVN r66781] --- test/array6.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/array6.cpp b/test/array6.cpp index aaeed2d..388b39f 100644 --- a/test/array6.cpp +++ b/test/array6.cpp @@ -30,7 +30,8 @@ void RunTests() fail_test ( "Array6: Same thing not equal?(1)" ); const arr &caRef = get_c_array ( test_case ); - if ( &*test_case.begin () != &caRef[0] ) + typename test_type::const_iterator iter = test_case.begin (); + if ( &*iter != &caRef[0] ) fail_test ( "Array6: Same thing not equal?(2)" ); }