Fixed trailing backslash-newline in generic templates
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
26aa131c82
commit
aaa4209cfc
|
@ -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; };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue