@@ -722,11 +722,6 @@ static zend_object *long_castable_no_operation_object_create(zend_class_entry *c
722
722
return long_castable_no_operation_object_create_ex (ce , 0 );
723
723
}
724
724
725
- static inline void long_castable_no_operation_create (zval * target , zend_long l )
726
- {
727
- ZVAL_OBJ (target , long_castable_no_operation_object_create_ex (long_castable_no_operation_ce , l ));
728
- }
729
-
730
725
static zend_result long_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
731
726
{
732
727
if (type == IS_LONG ) {
@@ -763,11 +758,6 @@ static zend_object *float_castable_no_operation_object_create(zend_class_entry *
763
758
return float_castable_no_operation_object_create_ex (ce , 0.0 );
764
759
}
765
760
766
- static inline void float_castable_no_operation_create (zval * target , double d )
767
- {
768
- ZVAL_OBJ (target , float_castable_no_operation_object_create_ex (float_castable_no_operation_ce , d ));
769
- }
770
-
771
761
static zend_result float_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
772
762
{
773
763
if (type == IS_DOUBLE ) {
@@ -806,11 +796,6 @@ static zend_object *numeric_castable_no_operation_object_create(zend_class_entry
806
796
return numeric_castable_no_operation_object_create_ex (ce , & tmp );
807
797
}
808
798
809
- static inline void numeric_castable_no_operation_create (zval * target , const zval * n )
810
- {
811
- ZVAL_OBJ (target , numeric_castable_no_operation_object_create_ex (numeric_castable_no_operation_ce , n ));
812
- }
813
-
814
799
static zend_result numeric_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
815
800
{
816
801
if (type == _IS_NUMBER ) {
0 commit comments