Merge branch 'develop'

This commit is contained in:
Ion Gaztañaga
2015-06-10 17:58:10 +02:00

View File

@@ -313,7 +313,7 @@ int main()
{
container<int> c;
{
int x;
int x = 0;
c.push_back(x);
assert(c.construction_type() == Copied);
c.insert(c.begin(), c.construction_type());
@@ -359,7 +359,7 @@ int main()
{
container<int> c;
{
int x;
int x = 0;
c.push_back(x);
assert(c.construction_type() == Copied);
c.insert(c.begin(), c.construction_type());