From e3947ea7f31518422d9d6b39f081dd4bb2e8f08f Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Wed, 27 Apr 2022 16:09:35 -0400 Subject: [PATCH] c++: add comments gcc/cp/ChangeLog: * tree.cc (strip_typedefs): Add default argument comments. --- gcc/cp/tree.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/cp/tree.cc b/gcc/cp/tree.cc index 63164bee638d..ed0d0d229500 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; -- 2.47.2