mirror of
https://github.com/boostorg/move.git
synced 2025-08-02 13:44:28 +02:00
Merge branch 'develop'
This commit is contained in:
@@ -313,7 +313,7 @@ int main()
|
|||||||
{
|
{
|
||||||
container<int> c;
|
container<int> c;
|
||||||
{
|
{
|
||||||
int x;
|
int x = 0;
|
||||||
c.push_back(x);
|
c.push_back(x);
|
||||||
assert(c.construction_type() == Copied);
|
assert(c.construction_type() == Copied);
|
||||||
c.insert(c.begin(), c.construction_type());
|
c.insert(c.begin(), c.construction_type());
|
||||||
@@ -359,7 +359,7 @@ int main()
|
|||||||
{
|
{
|
||||||
container<int> c;
|
container<int> c;
|
||||||
{
|
{
|
||||||
int x;
|
int x = 0;
|
||||||
c.push_back(x);
|
c.push_back(x);
|
||||||
assert(c.construction_type() == Copied);
|
assert(c.construction_type() == Copied);
|
||||||
c.insert(c.begin(), c.construction_type());
|
c.insert(c.begin(), c.construction_type());
|
||||||
|
Reference in New Issue
Block a user