aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Merrill <jason@redhat.com>2022-04-27 16:09:35 -0400
committerJason Merrill <jason@redhat.com>2022-04-27 19:49:37 -0400
commite3947ea7f31518422d9d6b39f081dd4bb2e8f08f (patch)
treee2886803acbd7be290bb7d8bfc4c8eacf871c025
parent58e4a744b6e8140499ed6c33a8e9a6557e102f74 (diff)
c++: add comments
gcc/cp/ChangeLog: * tree.cc (strip_typedefs): Add default argument comments.
-rw-r--r--gcc/cp/tree.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cp/tree.cc b/gcc/cp/tree.cc
index 63164bee638..ed0d0d22950 100644
--- a/gcc/cp/tree.cc
+++ b/gcc/cp/tree.cc
@@ -1583,7 +1583,8 @@ apply_identity_attributes (tree result, tree attribs, bool *remove_attributes)
stripped. */
tree
-strip_typedefs (tree t, bool *remove_attributes, unsigned int flags)
+strip_typedefs (tree t, bool *remove_attributes /* = NULL */,
+ unsigned int flags /* = 0 */)
{
tree result = NULL, type = NULL, t0 = NULL;