From f2d4ec96f0969a9e8a70e602adbf8bd120f9bf63 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sun, 3 Sep 2023 20:34:27 -0400 Subject: [PATCH] Dumb fix for name check on parameters Its now spitting out actual validation failures. --- project/components/ast.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/components/ast.cpp b/project/components/ast.cpp index c405510..f8c6884 100644 --- a/project/components/ast.cpp +++ b/project/components/ast.cpp @@ -1323,7 +1323,7 @@ bool AST::is_equal( AST* other ) return false; } - if ( ! curr->Name != curr_other->Name ) + if ( curr->Name != curr_other->Name ) { log_fmt( "\nAST::is_equal: Failed for parameter name check\n" "AST : %S\n"