csharpier
csharpier copied to clipboard
Comments affecting breaking of BinaryExpression
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 */
);