mirror of
https://github.com/boostorg/move.git
synced 2025-08-02 21:54:26 +02:00
Fixed typo in assignment test
This commit is contained in:
@@ -91,7 +91,7 @@ void test()
|
|||||||
const A* p = new const A[2];
|
const A* p = new const A[2];
|
||||||
BOOST_TEST(A::count == 2);
|
BOOST_TEST(A::count == 2);
|
||||||
d1(p);
|
d1(p);
|
||||||
bml::default_delete<const A[2]> d0 = d1;
|
bml::default_delete<const A[]> d0 = d1;
|
||||||
d0(0);
|
d0(0);
|
||||||
BOOST_TEST(A::count == 0);
|
BOOST_TEST(A::count == 0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user