I'm getting an error with the following:
class Test
{
std::map<std::string,Test> test;
};
The error is "Field has incomplete type 'Test'". I read a few threads with suggested this might be a bug in the version of libcxx which ships with xcode, but it wouldn't surprise me at all if I just have to change it to:
class Test
{
std::map<std::string,std::shared_ptr<Test>> test;
};
I just wanted to double check that this is definitely a correct error and not a bug.
Cheers!
std::map<std::string,std::shared_ptr<Test>>andstd::map<std::string,Test>are semantically very different! First one stores (smart) pointer, whereas second one the 'whole' object. – Yossarian Sep 5 '12 at 12:21boost::recursive_wrapper<>to solve exactly this problem. :-] – ildjarn Sep 6 '12 at 0:47