Skip to content

Commit a3c4229

Browse files
committed
fix // comments
1 parent 4eae211 commit a3c4229

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/intl/intl_data.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ typedef struct _intl_data {
4545
obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \
4646
intl_error_reset( INTL_DATA_ERROR_P(obj) TSRMLS_CC ); \
4747

48-
// Check status by error code, if error - exit
48+
/* Check status by error code, if error - exit */
4949
#define INTL_CHECK_STATUS(err, msg) \
5050
intl_error_set_code( NULL, (err) TSRMLS_CC ); \
5151
if( U_FAILURE((err)) ) \
@@ -54,7 +54,7 @@ typedef struct _intl_data {
5454
RETURN_FALSE; \
5555
}
5656

57-
// Check status in object, if error - exit
57+
/* Check status in object, if error - exit */
5858
#define INTL_METHOD_CHECK_STATUS(obj, msg) \
5959
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
6060
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
@@ -63,7 +63,7 @@ typedef struct _intl_data {
6363
RETURN_FALSE; \
6464
}
6565

66-
// Check status, if error - destroy value and exit
66+
/* Check status, if error - destroy value and exit */
6767
#define INTL_CTOR_CHECK_STATUS(obj, msg) \
6868
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
6969
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \

0 commit comments

Comments
 (0)