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-04-04 16:05:12 -04:00 committed by antirez
parent a9900ad38e
commit da18dd34a2

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);