|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r57138 - trunk/boost/intrusive
From: andrey.semashev_at_[hidden]
Date: 2009-10-24 13:46:46
Author: andysem
Date: 2009-10-24 13:46:45 EDT (Sat, 24 Oct 2009)
New Revision: 57138
URL: http://svn.boost.org/trac/boost/changeset/57138
Log:
Fixed compilation problem with Intel compiler.
Text files modified:
trunk/boost/intrusive/derivation_value_traits.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/intrusive/derivation_value_traits.hpp
==============================================================================
--- trunk/boost/intrusive/derivation_value_traits.hpp (original)
+++ trunk/boost/intrusive/derivation_value_traits.hpp 2009-10-24 13:46:45 EDT (Sat, 24 Oct 2009)
@@ -47,7 +47,7 @@
{ return pointer(static_cast<T*>(detail::get_pointer(n))); }
static const_pointer to_value_ptr(const_node_ptr n)
- { return const_pointer(static_cast<T*>(detail::get_pointer(n))); }
+ { return const_pointer(static_cast<const T*>(detail::get_pointer(n))); }
};
} //namespace intrusive
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk