Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functions

This commit is contained in:
Ginger Bill
2017-07-06 22:43:55 +01:00
parent eed873c6ec
commit 2db03cb4a5
22 changed files with 1319 additions and 1288 deletions

View File

@@ -6,7 +6,7 @@ gb_inline void print_indent(isize indent) {
}
void print_ast(AstNode *node, isize indent) {
if (node == NULL)
if (node == nullptr)
return;
switch (node->kind) {