diff options
Diffstat (limited to 'gcc/cp/friend.c')
-rw-r--r-- | gcc/cp/friend.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cp/friend.c b/gcc/cp/friend.c index 6d7d9d5..99295e6 100644 --- a/gcc/cp/friend.c +++ b/gcc/cp/friend.c @@ -202,10 +202,10 @@ add_friends (type, name, friend_type) } list = TREE_CHAIN (list); } - DECL_FRIENDLIST (typedecl) = - tree_cons (name, - build_tree_list (friend_type, NULL_TREE), - DECL_FRIENDLIST (typedecl)); + DECL_FRIENDLIST (typedecl) + = tree_cons (name, + build_tree_list (friend_type, NULL_TREE), + DECL_FRIENDLIST (typedecl)); if (! strncmp (IDENTIFIER_POINTER (name), IDENTIFIER_POINTER (ansi_opname[(int) MODIFY_EXPR]), strlen (IDENTIFIER_POINTER (ansi_opname[(int) MODIFY_EXPR])))) |