|
Boost : |
From: Joaquín Mª López Muñoz (joaquin_at_[hidden])
Date: 2007-11-12 08:40:42
Joaquín Mª López Muñoz ha escrito:
> While you wait for Boost 1.35 to come out you can patch your local copy
> of Boost (I assume it's Boost 1.34.1) by replacing lines 798 and following of
> boost/multi_index/ordered_index.hpp:
>
> struct link_info
> {
> ordered_index_side side;
> ordered_index_node_impl* pos;
> };
>
> with the following:
>
> struct link_info
> {
> link_info():side(to_left){}
>
> ordered_index_side side;
> node_impl_pointer pos;
> };
>
Sorry, the replacement above won't compile in Boost 1.34.1, use this
instead:
struct link_info
{
link_info():side(to_left){}
ordered_index_side side;
ordered_index_node_impl* pos;
};
Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk