aboutsummaryrefslogtreecommitdiff
path: root/contrib/libc++
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-03-07 22:55:31 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-03-07 22:55:31 +0000
commit6add1c59bf9bb287c3c296b921f22f44c371558b (patch)
tree7af4454009f801ce7a5e9eb63fa183eacbd8c19c /contrib/libc++
parent90ea30d3f0b8e2c6eafde5ddf9255f5d46735fe9 (diff)
downloadsrc-6add1c59bf9bb287c3c296b921f22f44c371558b.tar.gz
src-6add1c59bf9bb287c3c296b921f22f44c371558b.zip
Fix another -Wunused-local-typedef warning in libc++, in include/__tree.
MFC after: 3 days
Notes
Notes: svn path=/head/; revision=279758
Diffstat (limited to 'contrib/libc++')
-rw-r--r--contrib/libc++/include/__tree1
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/libc++/include/__tree b/contrib/libc++/include/__tree
index 8e5447a2ffb5..9007dbf507da 100644
--- a/contrib/libc++/include/__tree
+++ b/contrib/libc++/include/__tree
@@ -2069,7 +2069,6 @@ template <class _Key>
typename __tree<_Tp, _Compare, _Allocator>::size_type
__tree<_Tp, _Compare, _Allocator>::__count_multi(const _Key& __k) const
{
- typedef pair<const_iterator, const_iterator> _Pp;
__node_const_pointer __result = __end_node();
__node_const_pointer __rt = __root();
while (__rt != nullptr)