mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Fix aprint* bug; NULL -> nullptr; Better error messages for overloaded functions
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user