diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2018-02-27 14:05:23 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2018-02-27 14:05:23 -0500 |
commit | 7f7e718d9cfeab9a3ee4aea4dd2d9d565462c185 (patch) | |
tree | c8d09e62d49b8b22fac82db7be71ec495b47a87b | |
parent | e8ef9fdfb9fd4b16169377a7c65309bb110a0064 (diff) | |
download | gcc-7f7e718d9cfeab9a3ee4aea4dd2d9d565462c185.zip gcc-7f7e718d9cfeab9a3ee4aea4dd2d9d565462c185.tar.gz gcc-7f7e718d9cfeab9a3ee4aea4dd2d9d565462c185.tar.bz2 |
* cp-tree.h: Adjust comment.
From-SVN: r258040
-rw-r--r-- | gcc/cp/cp-tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index aef022f..6e83a29 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -3060,7 +3060,7 @@ struct GTY(()) lang_decl { /* For a non-member friend function, the class (if any) in which this friend was defined. For example, given: - struct S { friend void f (); }; + struct S { friend void f () { ... } }; the DECL_FRIEND_CONTEXT for `f' will be `S'. */ #define DECL_FRIEND_CONTEXT(NODE) \ |