Skip to content

Commit

Permalink
Fix re-order modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
lithiumtoast committed Jan 3, 2025
1 parent 262fcbb commit 2bd0270
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cs/production/c2ffi.Data/CLocation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ public readonly int CompareTo(CLocation other)
}

/// <inheritdoc />
public readonly override string ToString()
// ReSharper disable once ArrangeModifiersOrder
public override readonly string ToString()
{
if (LineNumber == 0 && LineColumn == 0)
{
Expand Down

0 comments on commit 2bd0270

Please sign in to comment.