diff options
| author | Ginger Bill <bill@gingerbill.org> | 2016-10-10 10:27:50 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2016-10-10 10:27:50 +0100 |
| commit | f5318c46d13ed3f3de20e0f61c4193e6ad46a42b (patch) | |
| tree | 89f62b9ea2e6b07816335c6695e358051e8152f1 /src/main.cpp | |
| parent | 90babbfbf30cc9c611af74e8c0af3562faf4d58b (diff) | |
Implicit Values: `context`; Fix lvalue selector assignments; Fix offset_of* for `using` fields.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 3460ee221..f25f17579 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7,9 +7,8 @@ #include "checker/checker.cpp" #include "codegen/codegen.cpp" +// NOTE(bill): `name` is used in debugging and profiling modes i32 win32_exec_command_line_app(char *name, char *fmt, ...) { - // PROF_SCOPED_STR(name); - STARTUPINFOW start_info = {gb_size_of(STARTUPINFOW)}; PROCESS_INFORMATION pi = {}; char cmd_line[2048] = {}; @@ -88,8 +87,6 @@ ArchData make_arch_data(ArchKind kind) { return data; } - - int main(int argc, char **argv) { if (argc < 2) { gb_printf_err("using: %s [run] <filename> \n", argv[0]); |