]> granicus.if.org Git - php/commitdiff
- Get rid of C++ comments
authorAndi Gutmans <andi@php.net>
Tue, 20 Jul 1999 13:01:30 +0000 (13:01 +0000)
committerAndi Gutmans <andi@php.net>
Tue, 20 Jul 1999 13:01:30 +0000 (13:01 +0000)
Zend/zend_compile.c
Zend/zend_execute_API.c
Zend/zend_list.c
Zend/zend_operators.c

index 452763fe11c001bbfd99279e3b5f238a40da6648..5a224a8b7edbe64dc2a943f38f60ecb33aa73ed3 100644 (file)
@@ -933,7 +933,6 @@ void do_early_binding(CLS_D)
        opline->opcode = ZEND_NOP;
        SET_UNUSED(opline->op1);
        SET_UNUSED(opline->op2);
-       //CG(active_op_array)->last--;
 }
 
 
index d5f7c111eaf96ea96f4a929a7c797a8b77bc284a..a5b94889c94aa3cda134856a53e0d39b26660cbb 100644 (file)
@@ -313,7 +313,6 @@ int call_user_function(HashTable *function_table, zval *object, zval *function_n
                *param = *(params[i]);
                INIT_PZVAL(param);
                zval_copy_ctor(param);
-               //zend_hash_next_index_insert_ptr(function_state.function_symbol_table, param, sizeof(zval *), NULL);
                zend_ptr_stack_push(&EG(argument_stack), param);
        }
 
index 3f1d01327e49748fc94847e043668637aaae4421..44992abd3e026934463500d0bfad60e9fec457ae 100644 (file)
@@ -48,7 +48,7 @@ static inline int zend_list_do_delete(HashTable *list,int id)
        ELS_FETCH();
        
        if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) {
-//             printf("del(%d): %d->%d\n", id, le->refcount, le->refcount-1);
+/*             printf("del(%d): %d->%d\n", id, le->refcount, le->refcount-1); */
                if (--le->refcount<=0) {
                        return zend_hash_index_del(&EG(regular_list), id);
                } else {
@@ -96,7 +96,7 @@ ZEND_API int zend_list_addref(int id)
        ELS_FETCH();
        
        if (zend_hash_index_find(&EG(regular_list), id, (void **) &le)==SUCCESS) {
-//             printf("add(%d): %d->%d\n", id, le->refcount, le->refcount+1);
+/*             printf("add(%d): %d->%d\n", id, le->refcount, le->refcount+1); */
                le->refcount++;
                return SUCCESS;
        } else {
index 8e202f255b3c7d481ef42dc9e5e35f91a9b4e2c9..d73feecd8399b5740bac258871797da395560654 100644 (file)
@@ -936,7 +936,6 @@ ZEND_API int is_not_equal_function(zval *result, zval *op1, zval *op2)
 
 ZEND_API int is_smaller_function(zval *result, zval *op1, zval *op2)
 {
-       //printf("Comparing %d and %d\n", op1->value.lval, op2->value.lval);
        if (compare_function(result, op1, op2) == FAILURE) {
                return FAILURE;
        }