Commit 7033d59e by Benjamin Kosnik Committed by Benjamin Kosnik

re PR libstdc++/53543 ([unordered_map] conflict with __is_convertible clang intrinsic)

2012-05-31  Benjamin Kosnik  <bkoz@redhat.com>

	PR libstdc++/53543
	* include/bits/hashtable_policy.h (_Insert::__is_convertible):
	Rename to __is_conv to avoid clash with clang built-in.

From-SVN: r188088
parent 22e83457
2012-05-31 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/53543
* include/bits/hashtable_policy.h (_Insert::__is_convertible):
Rename to __is_conv to avoid clash with clang built-in.
2012-05-29 François Dumont <fdumont@gcc.gnu.org> 2012-05-29 François Dumont <fdumont@gcc.gnu.org>
* include/bits/stl_tempbuf.h (__uninitialized_construct_buf) * include/bits/stl_tempbuf.h (__uninitialized_construct_buf)
......
...@@ -831,10 +831,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION ...@@ -831,10 +831,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
using __base_type::insert; using __base_type::insert;
template<typename _Pair> template<typename _Pair>
using __is_convertible = std::is_convertible<_Pair, value_type>; using __is_conv = std::is_convertible<_Pair, value_type>;
template<typename _Pair> template<typename _Pair>
using _IFconv = std::enable_if<__is_convertible<_Pair>::value>; using _IFconv = std::enable_if<__is_conv<_Pair>::value>;
template<typename _Pair> template<typename _Pair>
using _IFconvp = typename _IFconv<_Pair>::type; using _IFconvp = typename _IFconv<_Pair>::type;
......
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