class EntityHolder { public: EntityHolder ( ) { } EntityHolder ( const EntityHolder& other ) { } ~EntityHolder ( ) { } EntityHolder& operator = ( const EntityHolder& other ) { return *this; } // = When I am trying to create boost:shared_ptr, I get the following error:
..\src\Entity.cpp:7:34: error: no matching function for call to 'boost::shared_ptr<orm::EntityHolder>::shared_ptr (orm::EntityHolder&)' What does this mean?
shared_ptr, i.e. the line that gives the error.