Fixed trailing backslash-newline in generic templates
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2019-10-06 14:21:34 +02:00
parent 26aa131c82
commit aaa4209cfc

View File

@@ -12,4 +12,5 @@ public: [[nodiscard]] inline type Get##name() const{ return __##name; };
#define GetSetProperty(type, name) \ #define GetSetProperty(type, name) \
private: type __##name; \ private: type __##name; \
public: [[nodiscard]] inline type Get##name() const{ return __##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; };