
15 Mar
2012
15 Mar
'12
9:31 p.m.
El 15/03/2012 3:14, Joel Young escribió:
Can the interprocess::basic_string be modified to allow these conversions?
I hate having to do:
key_val = "fruitcake"; db.find(key_val);
interprocess::basic_string is now boost::container::basic_string, which follows std::basic_string interface. And you always need an allocator to place the string in shared memory. I don' think it could be implicitly constructible from char* or std::string. Ion