From patchwork Thu Jun 9 08:04:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Carlini X-Patchwork-Id: 99650 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 A36F3B6FF2 for ; Thu, 9 Jun 2011 18:04:40 +1000 (EST) Received: (qmail 2612 invoked by alias); 9 Jun 2011 08:04:33 -0000 Received: (qmail 2595 invoked by uid 22791); 9 Jun 2011 08:04:32 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_NONE X-Spam-Check-By: sourceware.org Received: from smtp207.alice.it (HELO smtp207.alice.it) (82.57.200.103) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 09 Jun 2011 08:04:18 +0000 Received: from [192.168.1.4] (79.43.213.74) by smtp207.alice.it (8.5.124.08) id 4DE640D500B378DF; Thu, 9 Jun 2011 10:04:16 +0200 Message-ID: <4DF07EA5.2040607@oracle.com> Date: Thu, 09 Jun 2011 10:04:53 +0200 From: Paolo Carlini User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110414 SUSE/3.1.10 Thunderbird/3.1.10 MIME-Version: 1.0 To: "gcc-patches@gcc.gnu.org" CC: libstdc++ Subject: [v3] Fix two typos in X-IsSubscribed: yes 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 Hi, tested x86_64-linux, committed. Thanks, Paolo. //////////////// 2011-06-09 Paolo Carlini * include/std/type_traits (__is_copy_assignable_impl, __is_nt_copy_assignable_impl): Fix typos. Index: include/std/type_traits =================================================================== --- include/std/type_traits (revision 174838) +++ include/std/type_traits (working copy) @@ -1029,7 +1029,7 @@ template struct __is_copy_assignable_impl<_Tp, false> - : public is_assignable<_Tp&, const _Tp&&> + : public is_assignable<_Tp&, const _Tp&> { }; /// is_copy_assignable @@ -1077,7 +1077,7 @@ template struct __is_nt_copy_assignable_impl<_Tp, false> - : public is_nothrow_assignable<_Tp&, const _Tp&&> + : public is_nothrow_assignable<_Tp&, const _Tp&> { }; /// is_nothrow_copy_assignable