mirror of
				https://github.com/Ed94/gencpp.git
				synced 2025-10-31 06:50:53 -07:00 
			
		
		
		
	inital implemention of UE library variant generator completed
This commit is contained in:
		| @@ -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 ); | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user