mirror of
https://github.com/boostorg/more.git
synced 2024-12-27 23:40:13 +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 ) ) {}
|
||||
const TestClass& operator=( const TestClass& rhs )
|
||||
{ ThisCanThrow(); *p = *rhs.p; }
|
||||
bool operator==( const TestClass& rhs )
|
||||
bool operator==( const TestClass& rhs ) const
|
||||
{ ThisCanThrow(); return *p == *rhs.p; }
|
||||
...etc...
|
||||
~TestClass() { delete p; }
|
||||
|
Loading…
Reference in New Issue
Block a user