diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-18 23:16:57 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-18 23:16:57 +0100 |
| commit | 126f7aa8923b6517c1c7a650ee6c0a374fa293da (patch) | |
| tree | 74e93bf5bd1d6aa7c772df42b7797e08cf5144c7 /src/checker.cpp | |
| parent | 2957f007e34ed7e2704a40c9e7af9148aebcdf23 (diff) | |
Begin work on documentation generation
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/checker.cpp b/src/checker.cpp index d5a5dfd72..ba8f7b35a 100644 --- a/src/checker.cpp +++ b/src/checker.cpp @@ -711,10 +711,11 @@ void destroy_checker_info(CheckerInfo *i) { } -void init_checker(Checker *c, Parser *parser, BuildContext *bc) { +void init_checker(Checker *c, Parser *parser) { if (global_error_collector.count > 0) { gb_exit(1); } + BuildContext *bc = &build_context; gbAllocator a = heap_allocator(); |