From: Brendan Hansen Date: Mon, 14 Jun 2021 20:29:51 +0000 (-0500) Subject: got rid of an unnecessary error X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=d58cdb72092a8bef3e4880d3ed38bd2e95a4d2f5;p=onyx.git got rid of an unnecessary error --- 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;