From 327c9cab8d526ff2647a995c1b7f7bf0e169e65b Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sat, 24 Oct 2009 17:46:45 +0000 Subject: [PATCH] Fixed compilation problem with Intel compiler. [SVN r57138] --- 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