@@ -45,7 +45,7 @@ typedef struct _intl_data {
45
45
obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \
46
46
intl_error_reset( INTL_DATA_ERROR_P(obj) TSRMLS_CC ); \
47
47
48
- // Check status by error code, if error - exit
48
+ /* Check status by error code, if error - exit */
49
49
#define INTL_CHECK_STATUS (err , msg ) \
50
50
intl_error_set_code( NULL, (err) TSRMLS_CC ); \
51
51
if( U_FAILURE((err)) ) \
@@ -54,7 +54,7 @@ typedef struct _intl_data {
54
54
RETURN_FALSE; \
55
55
}
56
56
57
- // Check status in object, if error - exit
57
+ /* Check status in object, if error - exit */
58
58
#define INTL_METHOD_CHECK_STATUS (obj , msg ) \
59
59
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
60
60
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
@@ -63,7 +63,7 @@ typedef struct _intl_data {
63
63
RETURN_FALSE; \
64
64
}
65
65
66
- // Check status, if error - destroy value and exit
66
+ /* Check status, if error - destroy value and exit */
67
67
#define INTL_CTOR_CHECK_STATUS (obj , msg ) \
68
68
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
69
69
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
0 commit comments