diff options
author | Matt Stancliff <matt@genges.com> | 2014-04-04 16:05:12 -0400 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-11-14 17:28:35 +0100 |
commit | a7b58f1569edcd0eddb91cc0e483af0326255115 (patch) | |
tree | 78c24f88eb60a6541ad4d469f38751d94ea4a2cb | |
parent | 56e186139840ad58d7e5752c86bdd3a4eb5e856f (diff) | |
download | redis-a7b58f1569edcd0eddb91cc0e483af0326255115.tar.gz |
Lua: remove new warning added by cjson header
clang doesn't like "extern inline" when no definition
is given right away.
-rw-r--r-- | deps/lua/src/fpconv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/lua/src/fpconv.h b/deps/lua/src/fpconv.h index 012490885..7b0d0ee31 100644 --- a/deps/lua/src/fpconv.h +++ b/deps/lua/src/fpconv.h @@ -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); |