mirror of
https://github.com/boostorg/more.git
synced 2024-12-28 23:50:09 +08:00
fixed const decl. typo
[SVN r27741]
This commit is contained in:
parent
e5ea34e334
commit
ab563c84ba
@ -467,7 +467,7 @@ struct TestClass
|
|||||||
: p( ThisCanThrow(), new int( *rhs.p ) ) {}
|
: p( ThisCanThrow(), new int( *rhs.p ) ) {}
|
||||||
const TestClass& operator=( const TestClass& rhs )
|
const TestClass& operator=( const TestClass& rhs )
|
||||||
{ ThisCanThrow(); *p = *rhs.p; }
|
{ ThisCanThrow(); *p = *rhs.p; }
|
||||||
bool operator==( const TestClass& rhs )
|
bool operator==( const TestClass& rhs ) const
|
||||||
{ ThisCanThrow(); return *p == *rhs.p; }
|
{ ThisCanThrow(); return *p == *rhs.p; }
|
||||||
...etc...
|
...etc...
|
||||||
~TestClass() { delete p; }
|
~TestClass() { delete p; }
|
||||||
|
Loading…
Reference in New Issue
Block a user