summaryrefslogtreecommitdiff
path: root/include/memory
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2015-08-23 02:39:20 +0000
committerEric Fiselier <eric@efcs.ca>2015-08-23 02:39:20 +0000
commitd686dda62e7da9958c6b82716bb8480f83ff40d0 (patch)
tree2227cffa81604ec311ff4ec0102ecd6f2b909669 /include/memory
parenta276cb01bef3c950e142838d0db61d6a6e460117 (diff)
Revert r245802. It violates the incomplete type requirements.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@245805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/memory')
-rw-r--r--include/memory9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/memory b/include/memory
index 9d214beb6..38ce433b2 100644
--- a/include/memory
+++ b/include/memory
@@ -932,15 +932,6 @@ public:
{return _VSTD::addressof(__r);}
};
-template <class _From, class _To>
-struct __rebind_pointer {
-#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
- typedef typename pointer_traits<_From>::template rebind<_To> type;
-#else
- typedef typename pointer_traits<_From>::template rebind<_To>::other type;
-#endif
-};
-
// allocator_traits
namespace __has_pointer_type_imp