Fix some warnings within tests.

This commit is contained in:
Kohei Takahashi
2015-01-21 01:13:19 +09:00
parent ce8bf1079a
commit 5e4978b870
5 changed files with 43 additions and 16 deletions

View File

@ -95,7 +95,7 @@ main()
#endif
{
boost::array<std::size_t, 2> a = { 10, 50 };
boost::array<std::size_t, 2> a = {{ 10, 50 }};
BOOST_TEST(back(pop_back(a)) == 10);
}