From 82c61d82ae7f0abda8f9ab07902c56e165057ad1 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Wed, 4 Nov 2009 16:21:19 +0000 Subject: [PATCH] Merged revision 57138 from trunk. Fixed compilation for Intel compiler. [SVN r57361] --- include/boost/intrusive/derivation_value_traits.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/intrusive/derivation_value_traits.hpp b/include/boost/intrusive/derivation_value_traits.hpp index 88edeab..7b5b013 100644 --- a/include/boost/intrusive/derivation_value_traits.hpp +++ b/include/boost/intrusive/derivation_value_traits.hpp @@ -47,7 +47,7 @@ struct derivation_value_traits { return pointer(static_cast(detail::get_pointer(n))); } static const_pointer to_value_ptr(const_node_ptr n) - { return const_pointer(static_cast(detail::get_pointer(n))); } + { return const_pointer(static_cast(detail::get_pointer(n))); } }; } //namespace intrusive