diff --git a/data/internal.h b/data/internal.h index daa7875..f88a7f0 100644 --- a/data/internal.h +++ b/data/internal.h @@ -11,4 +11,6 @@ template static constexpr decltype(sizeof(T)) __real_sizeof() { return sizeof(std::conditional_t, void *, T>); -} \ No newline at end of file +} +template +using __make_reference = T &; \ No newline at end of file diff --git a/data/out.cpp b/data/out.cpp index b1cf295..40cbc3b 100644 --- a/data/out.cpp +++ b/data/out.cpp @@ -64,7 +64,6 @@ public: #undef super // Disable Warnings -#pragma GCC diagnostic ignored "-Wparentheses" #pragma GCC diagnostic ignored "-Winvalid-offsetof" {{ main }} \ No newline at end of file diff --git a/data/out.h b/data/out.h index 2dcec86..07243c1 100644 --- a/data/out.h +++ b/data/out.h @@ -35,7 +35,6 @@ typedef unsigned int uint; // Warnings #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wshadow" -#pragma GCC diagnostic ignored "-Wparentheses" {{ main }} diff --git a/src/property.ts b/src/property.ts index a49396b..4ecf5e6 100644 --- a/src/property.ts +++ b/src/property.ts @@ -1,4 +1,4 @@ -import { extractArrayInfo, formatType } from './common'; +import { extractArrayInfo, formatType, INTERNAL } from './common'; // A Single Property export class Property { @@ -41,10 +41,11 @@ export class Property { } } +// A Single Static Property export class StaticProperty extends Property { // Reference referenceDefinition(addSelf: boolean) { const parts = this.parts(); - return `${parts.type}(&${addSelf ? this.prettyName() : this.name()})${parts.arrayInfo}`; + return `${INTERNAL}make_reference<${parts.type.trim()}${parts.arrayInfo}> ${addSelf ? this.prettyName() : this.name()}`; } } \ No newline at end of file