Commit 381846b1 by David Malcolm Committed by David Malcolm

Fix typo in doc/gty.texi

gcc/ChangeLog:
	* doc/gty.texi (Support for inheritance): Fix missing
	parentheses in example.

From-SVN: r230609
parent 41bfbbb6
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> 2015-11-19 Marek Polacek <polacek@redhat.com>
PR tree-optimization/68431 PR tree-optimization/68431
...@@ -429,13 +429,13 @@ public: ...@@ -429,13 +429,13 @@ public:
tree a; tree a;
@}; @};
class GTY((tag("1")) some_subclass : public example_base class GTY((tag("1"))) some_subclass : public example_base
@{ @{
public: public:
tree b; tree b;
@}; @};
class GTY((tag("2")) some_other_subclass : public example_base class GTY((tag("2"))) some_other_subclass : public example_base
@{ @{
public: public:
tree c; tree c;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment