mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Win32 Demo: OpenGL Context
This commit is contained in:
@@ -152,14 +152,6 @@ void print_ast(AstNode *node, isize indent) {
|
||||
print_ast(node->TypeDecl.type, indent+1);
|
||||
break;
|
||||
|
||||
case AstNode_AliasDecl:
|
||||
print_indent(indent);
|
||||
gb_printf("(alias)\n");
|
||||
print_ast(node->AliasDecl.name, indent+1);
|
||||
print_ast(node->AliasDecl.type, indent+1);
|
||||
break;
|
||||
|
||||
|
||||
case AstNode_ProcType:
|
||||
print_indent(indent);
|
||||
gb_printf("(type:proc)(%td -> %td)\n", node->ProcType.param_count, node->ProcType.result_count);
|
||||
|
||||
Reference in New Issue
Block a user