mirror of
https://github.com/boostorg/smart_ptr.git
synced 2026-07-10 10:21:00 +02:00
Removed redundant copy constructor and copy assignment.
[SVN r17043]
This commit is contained in:
@@ -14,12 +14,10 @@
|
||||
|
||||
class example
|
||||
{
|
||||
public:
|
||||
public:
|
||||
example();
|
||||
example( const example & );
|
||||
example & operator=( const example & );
|
||||
void do_something();
|
||||
private:
|
||||
private:
|
||||
class implementation;
|
||||
boost::shared_ptr< implementation > _imp; // hide implementation details
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user