aboutsummaryrefslogtreecommitdiff
path: root/source/20-codegen-compiler/main.cpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2022-06-12 20:57:37 -0700
committerrtk0c <[email protected]>2022-06-12 20:57:37 -0700
commit0f9e8f0a9c27d8cec700e99a6afaab901f10994b (patch)
tree1f2e0db73eadeb470e180775781711371104dde3 /source/20-codegen-compiler/main.cpp
parentf2011f48feb7a7ed4139ec6aa1ee874d520f1d86 (diff)
Changeset: 72 Add enum and namespace storing for CodegenModelArchive
Diffstat (limited to 'source/20-codegen-compiler/main.cpp')
-rw-r--r--source/20-codegen-compiler/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/20-codegen-compiler/main.cpp b/source/20-codegen-compiler/main.cpp
index 1431ae5..5a59b5d 100644
--- a/source/20-codegen-compiler/main.cpp
+++ b/source/20-codegen-compiler/main.cpp
@@ -1228,8 +1228,8 @@ where --output-dir=<path>: the *directory* to write generated contents to. Thi
DEBUG_PRINTF("Databse file: %.*s.\n", PRINTF_STRING_VIEW(as.databaseFilePath));
// TODO model archive is broken right now, see each TODO in CodegenModel.cpp
- // CodegenModelArchive archive(as.databaseFilePath);
- // as.modelArchive = &archive;
+ CodegenModelArchive archive(as.databaseFilePath);
+ as.modelArchive = &archive;
// Positional argument pass
for (int i = 1; i < argc; ++i) {