From d58cdb72092a8bef3e4880d3ed38bd2e95a4d2f5 Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 14 Jun 2021 15:29:51 -0500 Subject: [PATCH] got rid of an unnecessary error --- src/onyxtypes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/onyxtypes.c b/src/onyxtypes.c index c582b081..3ad513ee 100644 --- a/src/onyxtypes.c +++ b/src/onyxtypes.c @@ -536,9 +536,9 @@ Type* type_build_from_ast(bh_allocator alloc, AstType* type_node) { return comp_type; } - case Ast_Kind_Symbol: - assert(("symbol node in type expression", 0)); - return NULL; + // case Ast_Kind_Symbol: + // assert(("symbol node in type expression", 0)); + // return NULL; } return NULL; -- 2.25.1