mirror of
https://github.com/boostorg/coroutine2.git
synced 2025-05-09 23:24:01 +00:00
remove boost::noncopyable from tests
This commit is contained in:
parent
b7eacedf91
commit
2eb694583f
@ -30,10 +30,13 @@ int& value7 = value1;
|
||||
int value8 = 0;
|
||||
int value9 = 0;
|
||||
|
||||
struct X : private boost::noncopyable
|
||||
struct X
|
||||
{
|
||||
X() { value1 = 7; }
|
||||
~X() { value1 = 0; }
|
||||
|
||||
X( X const&) = delete;
|
||||
X & operator=( X const&) = delete;
|
||||
};
|
||||
|
||||
class copyable
|
||||
|
Loading…
x
Reference in New Issue
Block a user