From 836ae6917d56afc02126279a6c2a2b654676c53e Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Mon, 29 Apr 2019 02:29:00 -0400 Subject: [PATCH] Update vector value type in unit test --- test/noinit_adaptor_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();