singleheader compiles again

This commit is contained in:
2024-12-10 22:20:40 -05:00
parent aecc2c59dd
commit c8d6c27f07
6 changed files with 88 additions and 136 deletions

View File

@ -391,7 +391,7 @@ OpValidateResult operator__validate( Operator op, CodeParam params_code, CodeTyp
}
#define null_check( Context_, Code_ ) \
if ( Code_ != nullptr ) \
if ( Code_ == nullptr ) \
{ \
log_failure( "gen::" stringize(Context_) ": " stringize(Code_) " provided is null" ); \
return InvalidCode; \