summaryrefslogtreecommitdiff
path: root/ext/intl
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2009-01-29 21:49:49 +0000
committerStanislav Malyshev <stas@php.net>2009-01-29 21:49:49 +0000
commita3c422974b83b77e3e35161653ba3b5f5123f095 (patch)
tree6a23c8696b63eaa69ed7fc9d078a1abb208fc9a4 /ext/intl
parent4eae211d62e4671d6b01f04d14ba1b01843db4ec (diff)
downloadphp-git-a3c422974b83b77e3e35161653ba3b5f5123f095.tar.gz
fix // comments
Diffstat (limited to 'ext/intl')
-rwxr-xr-xext/intl/intl_data.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/intl/intl_data.h b/ext/intl/intl_data.h
index 4c887abab0..85f7d56143 100755
--- a/ext/intl/intl_data.h
+++ b/ext/intl/intl_data.h
@@ -45,7 +45,7 @@ typedef struct _intl_data {
obj = (oclass##_object *) zend_object_store_get_object( object TSRMLS_CC ); \
intl_error_reset( INTL_DATA_ERROR_P(obj) TSRMLS_CC ); \
-// Check status by error code, if error - exit
+/* Check status by error code, if error - exit */
#define INTL_CHECK_STATUS(err, msg) \
intl_error_set_code( NULL, (err) TSRMLS_CC ); \
if( U_FAILURE((err)) ) \
@@ -54,7 +54,7 @@ typedef struct _intl_data {
RETURN_FALSE; \
}
-// Check status in object, if error - exit
+/* Check status in object, if error - exit */
#define INTL_METHOD_CHECK_STATUS(obj, msg) \
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \
@@ -63,7 +63,7 @@ typedef struct _intl_data {
RETURN_FALSE; \
}
-// Check status, if error - destroy value and exit
+/* Check status, if error - destroy value and exit */
#define INTL_CTOR_CHECK_STATUS(obj, msg) \
intl_error_set_code( NULL, INTL_DATA_ERROR_CODE((obj)) TSRMLS_CC ); \
if( U_FAILURE( INTL_DATA_ERROR_CODE((obj)) ) ) \