Lua: remove new warning added by cjson header

clang doesn't like "extern inline" when no definition
is given right away.
This commit is contained in:
Matt Stancliff
2014-11-14 17:28:35 +01:00
committed by antirez
parent 56e1861398
commit a7b58f1569
+1 -1
View File
@@ -12,7 +12,7 @@ static inline void fpconv_init()
/* Do nothing - not required */
}
#else
extern inline void fpconv_init();
extern void fpconv_init();
#endif
extern int fpconv_g_fmt(char*, double, int);