Commit 0356a074 by François Dumont

2017-06-15 François Dumont <fdumont@gcc.gnu.org>

	* src/c++98/tree.cc  [!_GLIBCXX_INLINE_VERSION]
	(_Rb_tree_rotate_left, _Rb_tree_rotate_right): Delete.

From-SVN: r249226
parent 3a849280
2017-06-15 François Dumont <fdumont@gcc.gnu.org>
* src/c++98/tree.cc [!_GLIBCXX_INLINE_VERSION]
(_Rb_tree_rotate_left, _Rb_tree_rotate_right): Delete.
2017-06-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> 2017-06-15 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* testsuite: Add dg-require-effective-target pthread to -pthread * testsuite: Add dg-require-effective-target pthread to -pthread
......
...@@ -150,15 +150,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -150,15 +150,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__x->_M_parent = __y; __x->_M_parent = __y;
} }
#if !_GLIBCXX_INLINE_VERSION
/* Static keyword was missing on _Rb_tree_rotate_left. /* Static keyword was missing on _Rb_tree_rotate_left.
Export the symbol for backward compatibility until Export the symbol for backward compatibility until
next ABI change. */ next ABI change. */
void void
_Rb_tree_rotate_left(_Rb_tree_node_base* const __x, _Rb_tree_rotate_left(_Rb_tree_node_base* const __x,
_Rb_tree_node_base*& __root) _Rb_tree_node_base*& __root)
{ { local_Rb_tree_rotate_left (__x, __root); }
local_Rb_tree_rotate_left (__x, __root); #endif
}
static void static void
local_Rb_tree_rotate_right(_Rb_tree_node_base* const __x, local_Rb_tree_rotate_right(_Rb_tree_node_base* const __x,
...@@ -181,15 +181,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -181,15 +181,15 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
__x->_M_parent = __y; __x->_M_parent = __y;
} }
#if !_GLIBCXX_INLINE_VERSION
/* Static keyword was missing on _Rb_tree_rotate_right /* Static keyword was missing on _Rb_tree_rotate_right
Export the symbol for backward compatibility until Export the symbol for backward compatibility until
next ABI change. */ next ABI change. */
void void
_Rb_tree_rotate_right(_Rb_tree_node_base* const __x, _Rb_tree_rotate_right(_Rb_tree_node_base* const __x,
_Rb_tree_node_base*& __root) _Rb_tree_node_base*& __root)
{ { local_Rb_tree_rotate_right (__x, __root); }
local_Rb_tree_rotate_right (__x, __root); #endif
}
void void
_Rb_tree_insert_and_rebalance(const bool __insert_left, _Rb_tree_insert_and_rebalance(const bool __insert_left,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment