Index: test/std/containers/map_allocator_requirement_test_templates.h =================================================================== --- test/std/containers/map_allocator_requirement_test_templates.h +++ test/std/containers/map_allocator_requirement_test_templates.h @@ -51,7 +51,7 @@ CHECKPOINT("Testing C::insert(value_type&)"); Container c; ValueTp v(42, 1); - cc->expect(); + cc->expect(); assert(c.insert(v).second); assert(!cc->unchecked()); { @@ -77,7 +77,7 @@ CHECKPOINT("Testing C::insert(const value_type&&)"); Container c; const ValueTp v(42, 1); - cc->expect(); + cc->expect(); assert(c.insert(std::move(v)).second); assert(!cc->unchecked()); { @@ -141,7 +141,7 @@ CHECKPOINT("Testing C::insert(Iter, Iter) for *Iter = value_type&"); Container c; ValueTp ValueList[] = { ValueTp(1, 1), ValueTp(2, 1) , ValueTp(3, 1) }; - cc->expect(3); + cc->expect(3); c.insert(std::begin(ValueList), std::end(ValueList)); assert(!cc->unchecked()); { @@ -184,7 +184,7 @@ CHECKPOINT("Testing C::insert(p, value_type&)"); Container c; ValueTp v(42, 1); - cc->expect(); + cc->expect(); It ret = c.insert(c.end(), v); assert(ret != c.end()); assert(c.size() == 1); @@ -233,7 +233,7 @@ CHECKPOINT("Testing C::insert(p, const value_type&&)"); Container c; const ValueTp v(42, 1); - cc->expect(); + cc->expect(); It ret = c.insert(c.end(), std::move(v)); assert(ret != c.end()); assert(c.size() == 1); Index: test/std/containers/set_allocator_requirement_test_templates.h =================================================================== --- test/std/containers/set_allocator_requirement_test_templates.h +++ test/std/containers/set_allocator_requirement_test_templates.h @@ -128,7 +128,7 @@ CHECKPOINT("Testing C::insert(Iter, Iter) for *Iter = value_type&"); Container c; ValueTp ValueList[] = { ValueTp(1), ValueTp(2) , ValueTp(3) }; - cc->expect(3); + cc->expect(3); c.insert(std::begin(ValueList), std::end(ValueList)); assert(!cc->unchecked()); {