From a7c6fe3a44733b198afbdadd9a112f1328f963af Mon Sep 17 00:00:00 2001 From: Lucian Grijincu Date: Thu, 10 Sep 2015 22:10:42 -0700 Subject: [PATCH] folly: fix EmplaceIterCtor test Reviewed By: @yfeldblum Differential Revision: D2433146 --- folly/test/small_vector_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/test/small_vector_test.cpp b/folly/test/small_vector_test.cpp index f78d34ee..f31bafa7 100644 --- a/folly/test/small_vector_test.cpp +++ b/folly/test/small_vector_test.cpp @@ -811,7 +811,7 @@ TEST(small_vector, EmplaceIterCtor) { std::vector> uv(v.begin(), v.end()); std::vector w{new int(1), new int(2)}; - small_vector> uw(v.begin(), v.end()); + small_vector> uw(w.begin(), w.end()); } TEST(small_vector, InputIterator) { -- 2.34.1