diff --git a/src/GenericTemplates.cpp b/src/GenericTemplates.cpp index d61d6c9..5fa0efd 100644 --- a/src/GenericTemplates.cpp +++ b/src/GenericTemplates.cpp @@ -12,4 +12,5 @@ public: [[nodiscard]] inline type Get##name() const{ return __##name; }; #define GetSetProperty(type, name) \ private: type __##name; \ public: [[nodiscard]] inline type Get##name() const{ return __##name; }; \ -public: inline void Set##name(type value) { __##name = value; }; \ +public: inline void Set##name(type value) { __##name = value; }; +