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"