dotnet format

This commit is contained in:
2023-06-28 18:42:37 -07:00
parent 34a02fd8bd
commit 5996ec2a5a
18 changed files with 23 additions and 23 deletions

View File

@ -73,9 +73,9 @@ public readonly struct Point : IEquatable<Point>
/// Returns the hash code for this <see cref="Point"/>.
/// </summary>
/// <returns>The hash code for this <see cref="Point"/> structure.</returns>
#pragma warning disable IDE0070
#pragma warning disable IDE0070
public override int GetHashCode()
#pragma warning restore IDE0070
#pragma warning restore IDE0070
{
int hashCode = 1861411795;
hashCode = hashCode * -1521134295 + X.GetHashCode();