From: Brendan Hansen Date: Fri, 17 Jul 2020 13:53:02 +0000 (-0500) Subject: fix from last code cleanup X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=9b85f72d1f26828ea3857ef38a458dc219933ee3;p=onyx.git fix from last code cleanup --- diff --git a/include/onyxastnodes.h b/include/onyxastnodes.h index 9843f505..967f43ab 100644 --- a/include/onyxastnodes.h +++ b/include/onyxastnodes.h @@ -4,6 +4,8 @@ #include "onyxlex.h" #include "onyxtypes.h" +typedef struct AstNode AstNode; +typedef struct AstTyped AstTyped; typedef struct AstUnaryOp AstUnaryOp; typedef struct AstBinOp AstBinaryOp; typedef struct AstAssign AstAssign; @@ -19,6 +21,7 @@ typedef struct AstIf AstIf; typedef struct AstWhile AstWhile; typedef struct AstLocalGroup AstLocalGroup; +typedef struct AstType AstType; typedef struct AstBasicType AstBasicType; typedef struct AstPointerType AstPointerType; typedef struct AstFunctionType AstFunctionType; diff --git a/onyx b/onyx index 391c5eea..efc7bf7d 100755 Binary files a/onyx and b/onyx differ