Date: Sat, 7 Mar 2015 22:55:32 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r279758 - head/contrib/libc++/include Message-ID: <201503072255.t27MtWGO017821@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503072255.t27MtWGO017821>