Subject: Re: [Boost-users] boost::interprocess map: no appropriate default constructor compile error
From: Ion Gaztañaga (igaztanaga_at_[hidden])
Date: 2010-03-23 07:02:13


El 22/03/2010 20:43, Chris Miclea escribió:
> Hello,
>
> I have a problem when compiling code using boost::interprocess library code.

The compiler says it all. The shared memory allocator has no default
constructor, so you must provide the allocator when constructing the
map. See Interprocess documentation to see how to construct a map.

http://www.boost.org/doc/libs/1_42_0/doc/html/interprocess/quick_guide.html#interprocess.quick_guide.qg_interprocess_map

Ion