From: Guus Sliepen Date: Mon, 2 Oct 2017 20:40:47 +0000 (+0200) Subject: Convert sizeof foo to sizeof(foo). X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;ds=inline;h=13a73b80113568338e654aa1cb9dfb02d40b97c1;hp=13a73b80113568338e654aa1cb9dfb02d40b97c1;p=utcp Convert sizeof foo to sizeof(foo). While technically sizeof is an operator and doesn't need the parentheses around expressions it operates on, except if they are type names, code formatters don't seem to handle this very well. ---