]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix typo in doc/gty.texi
authordmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Nov 2015 15:18:03 +0000 (15:18 +0000)
committerdmalcolm <dmalcolm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 19 Nov 2015 15:18:03 +0000 (15:18 +0000)
gcc/ChangeLog:
* doc/gty.texi (Support for inheritance): Fix missing
parentheses in example.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@230609 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/doc/gty.texi

index 4f4b654695c011adbaf14a9eb4bd2fa7bfb30549..bca577e177ec78a9407d7160ee35f99ab70023c1 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-19  David Malcolm  <dmalcolm@redhat.com>
+
+       * doc/gty.texi (Support for inheritance): Fix missing
+       parentheses in example.
+
 2015-11-19  Marek Polacek  <polacek@redhat.com>
 
        PR tree-optimization/68431
index 5e0a46599c48b4e3c26b9b285a54b173132ee895..f66fa01e12062dd576700c0595265e802240883a 100644 (file)
@@ -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;