summaryrefslogtreecommitdiff
path: root/contrib/libc++
diff options
context:
space:
mode:
authorBernhard Froehlich <decke@FreeBSD.org>2013-10-06 10:12:11 +0000
committerBernhard Froehlich <decke@FreeBSD.org>2013-10-06 10:12:11 +0000
commitac6449901255ebf238e1d33ecb1cb0f3be9a070f (patch)
treeda7f2a4ec1fa059af97d5e6330b21dbab8d571b7 /contrib/libc++
parent505cdd82bfc5cd800c3ab79ab461202c40db8c02 (diff)
Notes
Diffstat (limited to 'contrib/libc++')
-rw-r--r--contrib/libc++/include/memory6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libc++/include/memory b/contrib/libc++/include/memory
index ffd0cd0ce77d..345154638d02 100644
--- a/contrib/libc++/include/memory
+++ b/contrib/libc++/include/memory
@@ -965,13 +965,13 @@ public:
namespace __has_pointer_type_imp
{
- template <class _Up> static __two test(...);
- template <class _Up> static char test(typename _Up::pointer* = 0);
+ template <class _Up> static __two __test(...);
+ template <class _Up> static char __test(typename _Up::pointer* = 0);
}
template <class _Tp>
struct __has_pointer_type
- : public integral_constant<bool, sizeof(__has_pointer_type_imp::test<_Tp>(0)) == 1>
+ : public integral_constant<bool, sizeof(__has_pointer_type_imp::__test<_Tp>(0)) == 1>
{
};