From abd39e791b08d0e2f46ff7986f3559bffa0b5fc4 Mon Sep 17 00:00:00 2001 From: Billy Donahue Date: Sun, 20 May 2018 16:32:06 -0400 Subject: [PATCH] json_tool missing include --- src/lib_json/json_tool.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib_json/json_tool.h b/src/lib_json/json_tool.h index f02537b..d5f6d2f 100644 --- a/src/lib_json/json_tool.h +++ b/src/lib_json/json_tool.h @@ -6,6 +6,7 @@ #ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED #define LIB_JSONCPP_JSON_TOOL_H_INCLUDED +#include // Also support old flag NO_LOCALE_SUPPORT #ifdef NO_LOCALE_SUPPORT @@ -23,7 +24,7 @@ */ namespace Json { -static char getDecimalPoint() { +static inline char getDecimalPoint() { #ifdef JSONCPP_NO_LOCALE_SUPPORT return '\0'; #else