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

This commit is contained in:
Deukhoofd 2019-10-06 14:21:34 +02:00
parent 26aa131c82
commit aaa4209cfc
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 2 additions and 1 deletions

View File

@ -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; };