@@ -69,7 +69,7 @@ schema_index_value_free(const struct schema_index_value *val) {
69
69
}
70
70
}
71
71
72
- static inline void
72
+ static void
73
73
schema_index_free (struct mh_schema_index_t * schema ) {
74
74
int pos = 0 ;
75
75
mh_int_t index_slot = 0 ;
@@ -146,7 +146,7 @@ mh_spacecmp_key_eq(
146
146
#define MH_DEBUG 1
147
147
#include "third_party/mhash.h"
148
148
149
- static inline void
149
+ static void
150
150
schema_space_value_free (const struct schema_space_value * val ) {
151
151
if (val ) {
152
152
pefree (val -> space_name , 1 );
@@ -161,7 +161,7 @@ schema_space_value_free(const struct schema_space_value *val) {
161
161
}
162
162
}
163
163
164
- static inline void
164
+ static void
165
165
schema_space_free (struct mh_schema_space_t * schema ) {
166
166
int pos = 0 ;
167
167
mh_int_t space_slot = 0 ;
@@ -212,7 +212,7 @@ int parse_field_type(const char *sfield, size_t sfield_len) {
212
212
return FT_OTHER ;
213
213
}
214
214
215
- static inline int
215
+ static int
216
216
parse_schema_space_value_value (struct schema_field_value * fld ,
217
217
const char * * tuple ) {
218
218
uint32_t sfield_len = 0 ;
@@ -240,7 +240,7 @@ parse_schema_space_value_value(struct schema_field_value *fld,
240
240
return -1 ;
241
241
}
242
242
243
- static inline int
243
+ static int
244
244
parse_schema_space_value (struct schema_space_value * space_string ,
245
245
const char * * tuple ) {
246
246
uint32_t fmp_tmp_len = 0 ;
@@ -269,7 +269,7 @@ parse_schema_space_value(struct schema_space_value *space_string,
269
269
return -1 ;
270
270
}
271
271
272
- static inline int
272
+ static int
273
273
parse_schema_index_value (struct schema_index_value * index_string ,
274
274
const char * * tuple ) {
275
275
if (mp_typeof (* * tuple ) != MP_ARRAY )
@@ -304,7 +304,7 @@ parse_schema_index_value(struct schema_index_value *index_string,
304
304
return -1 ;
305
305
}
306
306
307
- static inline int
307
+ static int
308
308
schema_add_space (
309
309
struct mh_schema_space_t * schema ,
310
310
const char * * data
@@ -421,7 +421,7 @@ tarantool_schema_add_spaces(
421
421
return -1 ;
422
422
}
423
423
424
- static inline int schema_add_index (
424
+ static int schema_add_index (
425
425
struct mh_schema_space_t * schema ,
426
426
const char * * data
427
427
) {
0 commit comments