@@ -955,11 +955,6 @@ static zend_object *long_castable_no_operation_object_create(zend_class_entry *c
955
955
return long_castable_no_operation_object_create_ex (ce , 0 );
956
956
}
957
957
958
- static inline void long_castable_no_operation_create (zval * target , zend_long l )
959
- {
960
- ZVAL_OBJ (target , long_castable_no_operation_object_create_ex (long_castable_no_operation_ce , l ));
961
- }
962
-
963
958
static zend_result long_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
964
959
{
965
960
if (type == IS_LONG ) {
@@ -996,11 +991,6 @@ static zend_object *float_castable_no_operation_object_create(zend_class_entry *
996
991
return float_castable_no_operation_object_create_ex (ce , 0.0 );
997
992
}
998
993
999
- static inline void float_castable_no_operation_create (zval * target , double d )
1000
- {
1001
- ZVAL_OBJ (target , float_castable_no_operation_object_create_ex (float_castable_no_operation_ce , d ));
1002
- }
1003
-
1004
994
static zend_result float_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
1005
995
{
1006
996
if (type == IS_DOUBLE ) {
@@ -1039,11 +1029,6 @@ static zend_object *numeric_castable_no_operation_object_create(zend_class_entry
1039
1029
return numeric_castable_no_operation_object_create_ex (ce , & tmp );
1040
1030
}
1041
1031
1042
- static inline void numeric_castable_no_operation_create (zval * target , const zval * n )
1043
- {
1044
- ZVAL_OBJ (target , numeric_castable_no_operation_object_create_ex (numeric_castable_no_operation_ce , n ));
1045
- }
1046
-
1047
1032
static zend_result numeric_castable_no_operation_cast_object (zend_object * obj , zval * result , int type )
1048
1033
{
1049
1034
if (type == _IS_NUMBER ) {
0 commit comments