From patchwork Thu Nov 19 15:19:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Malcolm X-Patchwork-Id: 546527 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 DD807140761 for ; Fri, 20 Nov 2015 02:20:11 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b=f5EZKmbX; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:cc:subject:date:message-id; q=dns; s=default; b=TwyW/rxBBGYG yLNATRL0Z28kY7jqdS1+DuFM/++RJGnvZdJQ3TsjYiCOEi2V/8yJRjW6qFu1p4+s 5pdVZ7SjKjpzhx6PZ/M5+GBcRW9CyZxj1tCd/V5V+TpfrS8MClT1M+lVgbaoeRJv niW70GzOWz31j0f/AfUMpfrNJNql14w= 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:from :to:cc:subject:date:message-id; s=default; bh=8pNXl6Gk26SY5zuph0 6IfVYkyTg=; b=f5EZKmbXF/72I1vU6G6ZR2uPniFBUGoIQJMlVr41cv0xBfh/MT cV+ZQPMMnDDmWPRwuxpB+LG6Xwh+28SYQvvVfF7XhkJI1au2mPf0X+BwBI/9FHJ+ Bg490huHKPOa/mqwIMGq8OspaT+jz9u2ysqcI9YpQDC6FclFS0xh+dgdE= Received: (qmail 56669 invoked by alias); 19 Nov 2015 15:20:03 -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 56642 invoked by uid 89); 19 Nov 2015 15:20:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_HELO_PASS autolearn=ham version=3.3.2 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; Thu, 19 Nov 2015 15:20:01 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id A430314CADA for ; Thu, 19 Nov 2015 15:20:00 +0000 (UTC) Received: from surprise.redhat.com (vpn-232-241.phx2.redhat.com [10.3.232.241]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id tAJFJxML025341; Thu, 19 Nov 2015 10:20:00 -0500 From: David Malcolm To: gcc-patches@gcc.gnu.org Cc: David Malcolm Subject: [PATCH; committed] Fix typo in doc/gty.texi Date: Thu, 19 Nov 2015 10:19:53 -0500 Message-Id: <1447946393-29087-1-git-send-email-dmalcolm@redhat.com> X-IsSubscribed: yes Committed to trunk (as r230609) as obvious, having verified that the docs build. gcc/ChangeLog: * doc/gty.texi (Support for inheritance): Fix missing parentheses in example. --- gcc/doc/gty.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/doc/gty.texi b/gcc/doc/gty.texi index 5e0a465..f66fa01 100644 --- a/gcc/doc/gty.texi +++ b/gcc/doc/gty.texi @@ -429,13 +429,13 @@ public: tree a; @}; -class GTY((tag("1")) some_subclass : public example_base +class GTY((tag("1"))) some_subclass : public example_base @{ public: tree b; @}; -class GTY((tag("2")) some_other_subclass : public example_base +class GTY((tag("2"))) some_other_subclass : public example_base @{ public: tree c;