mirror of
https://github.com/boostorg/array.git
synced 2025-07-29 20:27:21 +02:00
Fix? for borland
[SVN r66781]
This commit is contained in:
@ -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)" );
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user