From: Jason Merrill Date: Wed, 27 Apr 2022 20:09:35 +0000 (-0400) Subject: c++: add comments X-Git-Tag: basepoints/gcc-13~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3947ea7f31518422d9d6b39f081dd4bb2e8f08f;p=thirdparty%2Fgcc.git c++: add comments gcc/cp/ChangeLog: * tree.cc (strip_typedefs): Add default argument comments. --- 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;