fixed minor gcc comparison error in sandbox.cpp

This commit is contained in:
Shane Grant
2013-07-10 11:37:53 -07:00
parent 3f5ac02c70
commit 7461a8d1c8
2 changed files with 4 additions and 4 deletions

View File

@@ -423,7 +423,7 @@ int main()
std::array<int,5> arr;
iar( arr );
for( size_t i = 0; i < 5; ++i )
for( int i = 0; i < 5; ++i )
assert( arr[i] == (i+1) );
Everything e;