class EntityHolder {
public:
EntityHolder ( ) { }
EntityHolder (
const EntityHolder& other ) { }
~EntityHolder ( ) { }
EntityHolder&
operator = (
const EntityHolder& other ) {
return *this;
} // =
boost:shared_ptr を作成しようとすると、次のエラーが発生します。
..\src\Entity.cpp:7:34: error: no matching function for call to 'boost::shared_ptr<orm::EntityHolder>::shared_ptr (orm::EntityHolder&)'
これは何を意味するのでしょうか?