diff --git a/test/noinit_adaptor_test.cpp b/test/noinit_adaptor_test.cpp index 8f394ea..7965410 100644 --- a/test/noinit_adaptor_test.cpp +++ b/test/noinit_adaptor_test.cpp @@ -82,7 +82,7 @@ operator==(const type& lhs, const type& rhs) template void test(const A& allocator) { - std::vector v(allocator); + std::vector v(allocator); v.push_back(1); BOOST_TEST(v.front() == 1); v.clear();