diff options
author | Yichun Zhang (agentzh) <agentzh@gmail.com> | 2015-11-01 20:44:04 +0800 |
---|---|---|
committer | Yichun Zhang (agentzh) <agentzh@gmail.com> | 2015-11-01 20:44:04 +0800 |
commit | 27abfdefedc8f7c161e440114b75d2f52425621b (patch) | |
tree | c96ffa1a996000bf45fc4fa23d57881c4f480a38 | |
parent | e2762067f91a2cce61553f361d7ff4040b9f55bc (diff) | |
download | lua-cjson-2.1.0.3rc2.tar.gz lua-cjson-2.1.0.3rc2.tar.bz2 lua-cjson-2.1.0.3rc2.zip |
fixed the warning "inline function ‘fpconv_init’ declared but never defined" from gcc.2.1.0.3rc2
-rw-r--r-- | fpconv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ static inline void fpconv_init() | |||
12 | /* Do nothing - not required */ | 12 | /* Do nothing - not required */ |
13 | } | 13 | } |
14 | #else | 14 | #else |
15 | extern inline void fpconv_init(); | 15 | extern void fpconv_init(); |
16 | #endif | 16 | #endif |
17 | 17 | ||
18 | extern int fpconv_g_fmt(char*, double, int); | 18 | extern int fpconv_g_fmt(char*, double, int); |