From 8ecfca0c9b4d8a8f7c553f99b0bf10142eea88e6 Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Wed, 23 Nov 2016 10:36:48 +0000 Subject: Remove templated Map; replace with #include macro "templates" trick --- src/main.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main.cpp') 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; -- cgit v1.2.3