From 211c474eb4abb8f3cdbab874681d7e38e9b89a1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Fri, 25 Dec 2015 13:27:06 +0100 Subject: [PATCH] small_vector was not being tested in some places due to copy-paste error. --- test/small_vector_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/small_vector_test.cpp b/test/small_vector_test.cpp index bd15590..952dbc8 100644 --- a/test/small_vector_test.cpp +++ b/test/small_vector_test.cpp @@ -211,7 +211,7 @@ int main() //////////////////////////////////// // Default init test //////////////////////////////////// - if(!test::default_init_test< vector > >()){ + if(!test::default_init_test< small_vector > >()){ std::cerr << "Default init test failed" << std::endl; return 1; } @@ -220,7 +220,7 @@ int main() // Emplace testing //////////////////////////////////// const test::EmplaceOptions Options = (test::EmplaceOptions)(test::EMPLACE_BACK | test::EMPLACE_BEFORE); - if(!boost::container::test::test_emplace< vector, Options>()){ + if(!boost::container::test::test_emplace< small_vector, Options>()){ return 1; }