From e922a017faeac95cba0fb0a7fc0ce2de8bdd0b77 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Sun, 12 May 2024 20:25:19 +0200 Subject: [PATCH] fix == operator --- Angle.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Angle.h b/Angle.h index 1cb2b8e..0c7db51 100644 --- a/Angle.h +++ b/Angle.h @@ -18,7 +18,7 @@ public: static AngleOf pi; - bool AngleOf::operator==(AngleOf a); + bool operator==(AngleOf a); static AngleOf Normalize(AngleOf a); static AngleOf Clamp(AngleOf a, AngleOf min, AngleOf max);