From: Nick Bowler Date: Fri, 24 Feb 2012 02:31:58 +0000 (-0500) Subject: Fix spacing after qualified pointers when rendering C declarations. X-Git-Tag: v1~73 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/ed00362ec1f6f385d03ea5ca2b3dc3a8c25f4426?ds=sidebyside;hp=ed00362ec1f6f385d03ea5ca2b3dc3a8c25f4426 Fix spacing after qualified pointers when rendering C declarations. We don't want to print spaces after pointer qualifiers all the time: in particular, things like "type const pointer to array of int" would print a space between the "const" and the ")", as in: int (* const )[] Fix that up by eliding the space if (a) the pointer has qualifiers, and (b) the child is not a null declarator. ---