mirror of
https://github.com/USCiLab/cereal.git
synced 2025-10-18 01:45:52 +02:00
fixed minor gcc comparison error in sandbox.cpp
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user