summaryrefslogtreecommitdiffstats
path: root/libstdc++-v3/include/bits
diff options
context:
space:
mode:
authorredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2014-06-03 17:26:05 +0000
committerredi <redi@138bc75d-0d04-0410-961f-82ee72b054a4>2014-06-03 17:26:05 +0000
commit5f78ad884e0c5e66a104d0a5f73ea124b6afcc55 (patch)
tree3afa2ad952c886005f7936a8061f8978b24040b4 /libstdc++-v3/include/bits
parent0297ad56724e0016009e91cc676d508dd0279e25 (diff)
downloadppe42-gcc-5f78ad884e0c5e66a104d0a5f73ea124b6afcc55.tar.gz
ppe42-gcc-5f78ad884e0c5e66a104d0a5f73ea124b6afcc55.zip
Backport from mainline
2014-04-15 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/60734 * include/bits/stl_tree.h (_Rb_tree::_M_end): Fix invalid cast. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_9-branch@211190 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/bits')
-rw-r--r--libstdc++-v3/include/bits/stl_tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/stl_tree.h b/libstdc++-v3/include/bits/stl_tree.h
index cac917ea35b..ce43ab84686 100644
--- a/libstdc++-v3/include/bits/stl_tree.h
+++ b/libstdc++-v3/include/bits/stl_tree.h
@@ -526,11 +526,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
_Link_type
_M_end() _GLIBCXX_NOEXCEPT
- { return static_cast<_Link_type>(&this->_M_impl._M_header); }
+ { return reinterpret_cast<_Link_type>(&this->_M_impl._M_header); }
_Const_Link_type
_M_end() const _GLIBCXX_NOEXCEPT
- { return static_cast<_Const_Link_type>(&this->_M_impl._M_header); }
+ { return reinterpret_cast<_Const_Link_type>(&this->_M_impl._M_header); }
static const_reference
_S_value(_Const_Link_type __x)
OpenPOWER on IntegriCloud