From 6b0531718f87aed1d0a6d88bab08c3a8e8335496 Mon Sep 17 00:00:00 2001 From: Person Date: Sun, 24 Nov 2024 10:53:45 -0700 Subject: [PATCH] -Fix template compiler error that worked in C++17, but not in C++20. --- Source/Ember/Point.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Ember/Point.h b/Source/Ember/Point.h index c3d5dd6..db37f12 100644 --- a/Source/Ember/Point.h +++ b/Source/Ember/Point.h @@ -169,11 +169,7 @@ struct EMBER_API Color : public v4T template Color& operator = (const Color& color) { -#ifdef _WIN32 - v4T::operator=(color); -#else v4T::template operator=(color); -#endif return *this; }