diff options
author | rtk0c <[email protected]> | 2022-05-27 13:47:40 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-05-27 13:47:40 -0700 |
commit | 30e7501b006e55bdeec0db18709d3fd4c5db86b5 (patch) | |
tree | 871e0fc6332c99d73f0aebb145f88b089f80c115 /source-common | |
parent | 8fc3192da5ae3ac24511ad32088d669c799b6ddb (diff) |
Changeset: 40 Add custom token typing mechanism
Diffstat (limited to 'source-common')
-rw-r--r-- | source-common/MacrosCodegen.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source-common/MacrosCodegen.hpp b/source-common/MacrosCodegen.hpp index 6c93d09..d6d5c6f 100644 --- a/source-common/MacrosCodegen.hpp +++ b/source-common/MacrosCodegen.hpp @@ -1,4 +1,7 @@ +// NOTE: contents of this file is coupled with buildtools/codegen/ +// when updating, change both sides at the same time + #pragma once -#define BRUSSEL_METACLASS -#define BRUSSEL_METAENUM(name) +#define BRUSSEL_CLASS +#define BRUSSEL_ENUM(name, options) |