Commit a7c6fe3a authored by Lucian Grijincu's avatar Lucian Grijincu Committed by facebook-github-bot-9

folly: fix EmplaceIterCtor test

Reviewed By: @yfeldblum

Differential Revision: D2433146
parent ae099ba2
......@@ -811,7 +811,7 @@ TEST(small_vector, EmplaceIterCtor) {
std::vector<std::unique_ptr<int>> uv(v.begin(), v.end());
std::vector<int*> w{new int(1), new int(2)};
small_vector<std::unique_ptr<int>> uw(v.begin(), v.end());
small_vector<std::unique_ptr<int>> uw(w.begin(), w.end());
}
TEST(small_vector, InputIterator) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment