csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Comments affecting breaking of BinaryExpression

Open belav opened this issue 4 years ago • 0 comments

The comments in this code are short enough that it shouldn't break

        Debug.Assert(
            existingTemplate.Length
                >= sizeof(uint) /* MAGIC_HEADER */
                    + sizeof(Guid) /* keyId */
        ); 

// should be

Debug.Assert(
    existingTemplate.Length
        >= sizeof(uint) /* MAGIC_HEADER */ + sizeof(Guid) /* keyId */
);

belav avatar Jul 17 '21 16:07 belav