svn commit: r279758 - head/contrib/libc++/include

Dimitry Andric dim at FreeBSD.org
Sat Mar 7 22:55:32 UTC 2015


Author: dim
Date: Sat Mar  7 22:55:31 2015
New Revision: 279758
URL: https://svnweb.freebsd.org/changeset/base/279758

Log:
  Fix another -Wunused-local-typedef warning in libc++, in include/__tree.
  
  MFC after:	3 days

Modified:
  head/contrib/libc++/include/__tree

Modified: head/contrib/libc++/include/__tree
==============================================================================
--- head/contrib/libc++/include/__tree	Sat Mar  7 22:53:15 2015	(r279757)
+++ head/contrib/libc++/include/__tree	Sat Mar  7 22:55:31 2015	(r279758)
@@ -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)


More information about the svn-src-head mailing list