stas            Thu Jan 29 21:49:51 2009 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/intl   intl_data.h 
  Log:
  fix // comments
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/intl/intl_data.h?r1=1.1.2.3&r2=1.1.2.4&diff_format=u
Index: php-src/ext/intl/intl_data.h
diff -u php-src/ext/intl/intl_data.h:1.1.2.3 
php-src/ext/intl/intl_data.h:1.1.2.4
--- php-src/ext/intl/intl_data.h:1.1.2.3        Tue Jul 22 20:23:47 2008
+++ php-src/ext/intl/intl_data.h        Thu Jan 29 21:49:49 2009
@@ -45,7 +45,7 @@
        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 @@
         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 @@
         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)) ) )                             
                                        \



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to