Skip to content

Commit

Permalink
#53 oof... wrong operator
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacharyPatten committed Jul 11, 2020
1 parent a20b32e commit 0d883d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Towel_Testing/Mathematics/Matrix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1730,7 +1730,7 @@ public MyFloat(float value)
public static bool operator <=(MyFloat a, MyFloat b) => a.value <= b.value;
public static bool operator >=(MyFloat a, MyFloat b) => a.value >= b.value;
public static bool operator ==(MyFloat a, MyFloat b) => a.value == b.value;
public static bool operator !=(MyFloat a, MyFloat b) => a.value == b.value;
public static bool operator !=(MyFloat a, MyFloat b) => a.value != b.value;
public static MyFloat operator -(MyFloat a) => new MyFloat(-a.value);
}

Expand Down

0 comments on commit 0d883d3

Please sign in to comment.