From patchwork Mon Jun 9 11:52:44 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 357429 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]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 494961400AA for ; Mon, 9 Jun 2014 21:52:55 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; q=dns; s= default; b=x6nizdp/1LNIyfKvCBtWKJDgCnkBtoLaGdeGSFKQy0zBofV9xeMx9 W9P9ID1exli1u0TjTVKB5R6R/ZLtuyar1CNEq1OfYefcK7Gu9BzI81ridYmsRYXZ XCUAsQC1Cjg0/zIWYuu5OP/9oISzg1d3iy8NLG0Helwad07KBH/zAc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:date :from:to:subject:message-id:mime-version:content-type; s= default; bh=KDQdVRI75LxWlQ5QQ5QJUL4Uy54=; b=MHDGYsdi3NOOuwwNp/TV icUJLZpOdMC5s3sc4y/ai3WVn/lCGdlytCm7NNCd5XkB8VqXv5cnZEcSvN2KsU69 E36zV9aOJXmj5nHhMe6kmpCucn2sX3ywneFHElceD9nVhDiPIbdxCuGE8CMY//Bv gYy6YSZs9o5rxIdOIov+WwE= Received: (qmail 11038 invoked by alias); 9 Jun 2014 11:52:48 -0000 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 Received: (qmail 11020 invoked by uid 89); 9 Jun 2014 11:52:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 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 ESMTP; Mon, 09 Jun 2014 11:52:47 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s59Bqjhv013528 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Mon, 9 Jun 2014 07:52:45 -0400 Received: from localhost (vpn1-7-80.ams2.redhat.com [10.36.7.80]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s59BqidN021610; Mon, 9 Jun 2014 07:52:45 -0400 Date: Mon, 9 Jun 2014 12:52:44 +0100 From: Jonathan Wakely To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org Subject: [patch] fix minor typo in comment Message-ID: <20140609115244.GF30729@redhat.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Tested x86_64-linux, committed to trunk. commit 176c3be1080e0b33fe02612e015e42eb2d74cf0e Author: Jonathan Wakely Date: Mon Jun 9 10:40:47 2014 +0100 * include/tr1/beta_function.tcc: Fix spelling of include guard in comment. diff --git a/libstdc++-v3/include/tr1/beta_function.tcc b/libstdc++-v3/include/tr1/beta_function.tcc index c4fe6e8..e7d7c4d 100644 --- a/libstdc++-v3/include/tr1/beta_function.tcc +++ b/libstdc++-v3/include/tr1/beta_function.tcc @@ -194,4 +194,4 @@ namespace tr1 } } -#endif // __GLIBCXX_TR1_BETA_FUNCTION_TCC +#endif // _GLIBCXX_TR1_BETA_FUNCTION_TCC