Fix another -Wunused-local-typedef warning in libc++, in include/__tree.

MFC after:	3 days
This commit is contained in:
Dimitry Andric 2015-03-07 22:55:31 +00:00
parent 90ea30d3f0
commit 6add1c59bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279758

View File

@ -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)