[test] Change size type in wrapped_boost_array from int to std::size_t

This commit is contained in:
Adam Wulkiewicz 2014-08-07 00:47:18 +02:00
parent df40ef3bc7
commit 3322234f6a

View File

@ -30,7 +30,7 @@ struct wrapped_boost_array
inline wrapped_boost_array() : size(0) {}
boost::array<Point, Count> array;
int size;
std::size_t size;
};