diff options
author | Marius Kintel <marius@kintel.net> | 2013-04-09 05:04:36 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-04-09 05:04:36 (GMT) |
commit | 151593705f0cd83e1c5880607639daae25502d8b (patch) | |
tree | 297440455c1e24a0d17f77e20675a7cbdc824eba /src/openscad.cc | |
parent | 2018a1fb6ae6ee65b79dfc96328945045baab753 (diff) |
Disable context debug output
Diffstat (limited to 'src/openscad.cc')
-rw-r--r-- | src/openscad.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/openscad.cc b/src/openscad.cc index a345569..3b960f3 100644 --- a/src/openscad.cc +++ b/src/openscad.cc @@ -351,8 +351,9 @@ int main(int argc, char **argv) ModuleContext root_ctx; root_ctx.registerBuiltin(); PRINT("Root Context:"); +#if 0 && DEBUG root_ctx.dump(NULL, NULL); - +#endif fs::path fpath = boosty::absolute(fs::path(filename)); fs::path fparent = fpath.parent_path(); fs::current_path(fparent); |