Test more constructors

This commit is contained in:
Ion Gaztañaga
2015-02-26 00:34:37 +01:00
parent 6c5e527c60
commit 4609c78ccb
4 changed files with 96 additions and 3 deletions

View File

@@ -53,7 +53,8 @@ bool test_range_insertion()
for (std::size_t i = 0; i <= input_deque.size(); ++i)
{
std::deque<int> std_deque;
SeqContainer seq_container;
::boost::movelib::unique_ptr<SeqContainer> const pseqcontainer = ::boost::movelib::make_unique<SeqContainer>();
SeqContainer &seq_container = *pseqcontainer;
for (int element = -10; element < 10; ++element)
{