@@ -52,7 +52,7 @@ php_printf("solr_string_alloc() [Re]allocated %u bytes at %p in %s(), %s Line %d
5252/* {{{ PHP_SOLR_API void solr_string_appends(solr_string_t *dest, const solr_char_t *src, size_t length SOLR_MEM_DEBUG_DC) */
5353PHP_SOLR_API void solr_string_appends_ex (solr_string_t * dest , const solr_char_t * src , size_t length SOLR_MEM_DEBUG_DC )
5454{
55- auto size_t __new_length = 0U ;
55+ size_t __new_length = 0U ;
5656
5757 /* (Re)allocates memory and increases the capacity if necessary */
5858 solr_string_alloc (dest , length , & __new_length SOLR_MEM_DEBUG_CC );
@@ -71,7 +71,7 @@ PHP_SOLR_API void solr_string_appends_ex(solr_string_t *dest, const solr_char_t
7171/* {{{ PHP_SOLR_API void solr_string_appendc(solr_string_t *dest, solr_char_t ch SOLR_MEM_DEBUG_DC) */
7272PHP_SOLR_API void solr_string_appendc_ex (solr_string_t * dest , solr_char_t ch SOLR_MEM_DEBUG_DC )
7373{
74- auto size_t __new_length = 0U ;
74+ size_t __new_length = 0U ;
7575
7676 /* (Re)allocates memory and increases the capacity if necessary */
7777 solr_string_alloc (dest , 1 , & __new_length SOLR_MEM_DEBUG_CC );
@@ -101,8 +101,8 @@ PHP_SOLR_API void solr_string_remove_last_char(solr_string_t *dest)
101101/* {{{ PHP_SOLR_API void solr_string_append_long(solr_string_t *dest, long int long_val) */
102102PHP_SOLR_API void solr_string_append_long_ex (solr_string_t * dest , long int long_val SOLR_MEM_DEBUG_DC )
103103{
104- auto size_t __new_length = 0U ;
105- auto char tmp_buffer [SOLR_STRING_LONG_BUFFER_SIZE ];
104+ size_t __new_length = 0U ;
105+ char tmp_buffer [SOLR_STRING_LONG_BUFFER_SIZE ];
106106 size_t length = 0 ;
107107
108108 /* Write the formated long to the buffer */
@@ -127,8 +127,8 @@ PHP_SOLR_API void solr_string_append_long_ex(solr_string_t *dest, long int long_
127127/* {{{ PHP_SOLR_API void solr_string_append_unsigned_long(solr_string_t *dest, unsigned long int long_val) */
128128PHP_SOLR_API void solr_string_append_unsigned_long_ex (solr_string_t * dest , unsigned long int long_val SOLR_MEM_DEBUG_DC )
129129{
130- auto size_t __new_length = 0U ;
131- auto char tmp_buffer [SOLR_STRING_UNSIGNED_LONG_BUFFER_SIZE ];
130+ size_t __new_length = 0U ;
131+ char tmp_buffer [SOLR_STRING_UNSIGNED_LONG_BUFFER_SIZE ];
132132 size_t length = 0 ;
133133
134134 /* Write the formated unsigned long to the buffer */
0 commit comments