18 Dec
2006
18 Dec
'06
8:04 p.m.
Duane Murphy wrote:
I'm trying to use boost::ptr_map<> and cannot get calls insert to compile.
I'm on Mac OS X using gcc 3.3 with Xcode.
Even the most basic code fails to compile:
boost::ptr_map< in, int* > my_map;
shouldn't this be(ie: no *): boost::ptr_map< int, int > my_map; Jeff Flinn