Use PHPC_READ_PROPERTY in FANNConnection

Esse commit está contido em:
Jakub Zelenka
2016-02-03 18:56:56 +00:00
commit 6ea9a54c51
2 arquivos alterados com 3 adições e 2 exclusões
+1
Ver Arquivo
@@ -1866,6 +1866,7 @@ PHP_FUNCTION(fann_set_weight_array)
struct fann *ann;
struct fann_connection *connections;
unsigned num_connections, i = 0;
PHPC_READ_PROPERTY_RV_DECLARE;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ra", &z_ann, &array) == FAILURE) {
return;
+2 -2
Ver Arquivo
@@ -238,8 +238,8 @@ PHP_FANN_API extern zend_class_entry *php_fann_FANNConnection_class;
zend_declare_property_##__type(php_fann_FANNConnection_class, PHP_FANN_CONN_PROP_NAME(__name), \
0, ZEND_ACC_PUBLIC TSRMLS_CC)
#define PHP_FANN_CONN_PROP_READ(__obj, __name) \
zend_read_property(php_fann_FANNConnection_class, (__obj), \
PHP_FANN_CONN_PROP_NAME(__name), 0 TSRMLS_CC)
PHPC_READ_PROPERTY(php_fann_FANNConnection_class, (__obj), \
__name, sizeof(__name)-1, 0)
#endif /* PHP_FANN_H */