inital implemention of UE library variant generator completed

This commit is contained in:
2024-10-25 05:01:37 -04:00
parent 33f992ef56
commit f90c0a59b6
17 changed files with 402 additions and 215 deletions

View File

@ -371,8 +371,8 @@ CodeBody gen_ast_inlines()
if ( ast == nullptr || other.ast == nullptr )
{
// Just check if they're both null.
log_failure( "Code::is_equal: Cannot compare code, AST is null!" );
return false;
// log_failure( "Code::is_equal: Cannot compare code, AST is null!" );
return ast == nullptr && other.ast == nullptr;
}
return rcast(AST*, ast)->is_equal( other.ast );
}