From patchwork Tue Nov 6 23:07:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 197578 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id 4F8AD2C00FB for ; Wed, 7 Nov 2012 10:07:47 +1100 (EST) Comment: DKIM? See http://www.dkim.org DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=gcc.gnu.org; s=default; x=1352848067; h=Comment: DomainKey-Signature:Received:Received:Received:Received: MIME-Version:Received:Received:Date:Message-ID:Subject:From:To: Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:Sender:Delivered-To; bh=PWdqfCh 5lnb58K6/YW06BHh9XB0=; b=oaAOBJEHQ/HVKJn1R2fAEh9LaAEn2oPbAp2lOOJ H+Tcj3Q7rVp/96tOT0T9/aHJ0Sq4pZECNnX53VWRHK6g+AUKvALth/uR+ck5ATf8 fzIR4WHtExsEw1cbg+IuQk9AuUWv7NVRTK7iSKRsG0sY6XLGiCsCJxCK1keyUN5s J2p4= Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=gcc.gnu.org; h=Received:Received:X-SWARE-Spam-Status:X-Spam-Check-By:Received:Received:MIME-Version:Received:Received:Date:Message-ID:Subject:From:To:Content-Type:Mailing-List:Precedence:List-Id:List-Unsubscribe:List-Archive:List-Post:List-Help:Sender:Delivered-To; b=YXpigLZOCHweu5yYT3jFXTlmmSZGlNjVpzy2V/zSTNUo9/dzLxk8CFq50gXIa8 +1Im2PoCfEvkWxMzgKRZGhIPqJaErL5K1Jm9n1uQkR9KKaUoeW1GwscANy4adJyH y4hpdXKcxwi1yM+yGOYyJk2sU1bslQIhP0nxMCthZdKlM=; Received: (qmail 22441 invoked by alias); 6 Nov 2012 23:07:39 -0000 Received: (qmail 22422 invoked by uid 22791); 6 Nov 2012 23:07:38 -0000 X-SWARE-Spam-Status: No, hits=-4.6 required=5.0 tests=AWL, BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, KHOP_RCVD_TRUST, RCVD_IN_DNSWL_LOW, RCVD_IN_HOSTKARMA_NO, RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-ie0-f175.google.com (HELO mail-ie0-f175.google.com) (209.85.223.175) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 06 Nov 2012 23:07:34 +0000 Received: by mail-ie0-f175.google.com with SMTP id c13so1553850ieb.20 for ; Tue, 06 Nov 2012 15:07:34 -0800 (PST) MIME-Version: 1.0 Received: by 10.50.169.100 with SMTP id ad4mr290457igc.50.1352243254307; Tue, 06 Nov 2012 15:07:34 -0800 (PST) Received: by 10.42.158.202 with HTTP; Tue, 6 Nov 2012 15:07:34 -0800 (PST) Date: Tue, 6 Nov 2012 23:07:34 +0000 Message-ID: Subject: [v3] remove dup include in testcase From: Jonathan Wakely To: "libstdc++" , gcc-patches Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org * testsuite/20_util/shared_ptr/cons/55123.cc: Remove duplicate include. Committed to trunk and 4.7 --- a/libstdc++-v3/testsuite/20_util/shared_ptr/cons/55123.cc +++ b/libstdc++-v3/testsuite/20_util/shared_ptr/cons/55123.cc @@ -22,8 +22,6 @@ // libstdc++/55123 -#include - void f() { std::unique_ptr y; std::shared_ptr x = std::move(y);