From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 92845 invoked by alias); 10 May 2016 12:04:19 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 92797 invoked by uid 89); 10 May 2016 12:04:18 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-4.0 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1323, pmr X-Spam-User: qpsmtpd, 2 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 10 May 2016 12:04:02 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 1AA18C05B1CB; Tue, 10 May 2016 12:04:01 +0000 (UTC) Received: from localhost (ovpn-116-34.ams2.redhat.com [10.36.116.34]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u4AC3xhe014687; Tue, 10 May 2016 08:04:00 -0400 Date: Tue, 10 May 2016 12:04:00 -0000 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [PATCH] Remove unused using declaration in libstdc++ testsuite Message-ID: <20160510120358.GA16346@redhat.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline X-Clacks-Overhead: GNU Terry Pratchett User-Agent: Mutt/1.6.0 (2016-04-01) X-SW-Source: 2016-05/txt/msg00691.txt.bz2 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-length: 57 A minor tweak. Tested x86_64-linux, committed to trunk. --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch.txt" Content-length: 1227 commit 68e7dfdee8a53d5d18357b654a84221dc5a5529e Author: Jonathan Wakely Date: Tue May 10 13:02:09 2016 +0100 * testsuite/experimental/type_erased_allocator/2.cc: Remove unused using declaration. diff --git a/libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc b/libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc index 8f7d0b5..4460498 100644 --- a/libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc +++ b/libstdc++-v3/testsuite/experimental/type_erased_allocator/2.cc @@ -17,9 +17,9 @@ // with this library; see the file COPYING3. If not see // . -#include #include #include +#include #include #include @@ -27,7 +27,6 @@ using std::experimental::pmr::polymorphic_allocator; using std::experimental::pmr::memory_resource; using std::experimental::pmr::new_delete_resource; using std::experimental::pmr::get_default_resource; -using std::experimental::pmr::set_default_resource; using std::allocator_arg_t; enum CtorType { Default, Copy, Move, Other, Tuple, Piecewise_Default, Piecewise_Copy}; --IJpNTDwzlM2Ie8A6--