Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2016-04-12 15:21:08 +0300
committerMark Pulford <mark@kyne.com.au>2016-04-12 15:21:08 +0300
commitb7082c83b25bfccf0857164541818fe47f2ef400 (patch)
treec21733bb99bbe95fd1abb009e66366608cc43d0e
parentd59326b2d718e1a140b9b396ffe0a557b2d93fe0 (diff)
Fix clang undefined-inline warning
Fixes #28.
-rw-r--r--fpconv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpconv.h b/fpconv.h
index 0124908..7b0d0ee 100644
--- a/fpconv.h
+++ b/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);