summaryrefslogtreecommitdiffstats
path: root/contrib/libc++
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2014-08-23 15:54:22 +0000
committerdim <dim@FreeBSD.org>2014-08-23 15:54:22 +0000
commit5936c1d76ac175bb475a41d22b0cd38325f499d8 (patch)
tree1f0ef44662a0f73792270d12f6a7f6b9ed4615c2 /contrib/libc++
parent48e335c3a2aaae6f009b6c6fb27707c2dc393e53 (diff)
downloadFreeBSD-src-5936c1d76ac175bb475a41d22b0cd38325f499d8.zip
FreeBSD-src-5936c1d76ac175bb475a41d22b0cd38325f499d8.tar.gz
In r260015, I renamed several identifiers to avoid -Wsystem-header
warnings. In r261283, I imported libc++ 3.4 release, but this contained one identifier that had not been renamed yet, leading to a compilation error when using -std=c++1y. Fix the compilation error by correctly renaming the identifier. Reported by: rcarter@pinyon.org PR: base/192139 MFC after: 3 days
Diffstat (limited to 'contrib/libc++')
-rw-r--r--contrib/libc++/include/type_traits2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libc++/include/type_traits b/contrib/libc++/include/type_traits
index a97441d..00492b1 100644
--- a/contrib/libc++/include/type_traits
+++ b/contrib/libc++/include/type_traits
@@ -301,7 +301,7 @@ template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY __is_nullptr_t
#if _LIBCPP_STD_VER > 11
template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY is_null_pointer
- : public ____is_nullptr_t<typename remove_cv<_Tp>::type> {};
+ : public __libcpp___is_nullptr<typename remove_cv<_Tp>::type> {};
#endif
// is_integral
OpenPOWER on IntegriCloud