* Fixed GCC -Wshadow warnings.

*  Added missing `explicit` keyword in several intrusive container constructors.
*  Replaced deprecated BOOST_NO_XXXX with newer BOOST_NO_CXX11_XXX macros.

[SVN r81517]
This commit is contained in:
Ion Gaztañaga
2012-11-24 21:06:48 +00:00
parent 9847a9f626
commit 864f00b1c7
8 changed files with 144 additions and 128 deletions

View File

@@ -53,8 +53,8 @@ struct stateful_value_traits
static const link_mode_type link_mode = normal_link;
stateful_value_traits(pointer values, node_ptr node_array)
: values_(values), node_array_(node_array)
stateful_value_traits(pointer vals, node_ptr node_array)
: values_(vals), node_array_(node_array)
{}
node_ptr to_node_ptr (value_type &value)