diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-11-23 10:36:48 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-11-23 10:36:48 +0000 |
| commit | 8ecfca0c9b4d8a8f7c553f99b0bf10142eea88e6 (patch) | |
| tree | d04d929f7cd07cddf064704b7171ad3524f092a7 /src/main.cpp | |
| parent | cb7b9a413d66b1dce30a4d810f17ed8453c0a738 (diff) | |
Remove templated Map; replace with #include macro "templates" trick
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index bb5232c81..75505e7e0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,7 +1,6 @@ #define VERSION_STRING "v0.0.3" #include "common.cpp" -#include "profiler.cpp" #include "timings.cpp" #include "unicode.cpp" #include "tokenizer.cpp" @@ -107,7 +106,6 @@ int main(int argc, char **argv) { usage(argv[0]); return 1; } - prof_init(); Timings timings = {0}; timings_init(&timings, str_lit("Total Time"), 128); @@ -122,7 +120,7 @@ int main(int argc, char **argv) { init_universal_scope(); char *init_filename = NULL; - b32 run_output = false; + bool run_output = false; String arg1 = make_string_c(argv[1]); if (str_eq(arg1, str_lit("run"))) { run_output = true; |