From a409ba94888b823e276b5f6f88b063c4b5a41936 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Sat, 10 Jan 2015 18:46:01 +0100 Subject: [PATCH] Fixed build --- src/json.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json.h b/src/json.h index 2fa0bdf3..c09d5665 100644 --- a/src/json.h +++ b/src/json.h @@ -419,7 +419,7 @@ class json /// parse a quoted string inline std::string parseString(); /// transforms a unicode codepoint to it's UTF-8 presentation - inline std::string codePointToUTF8(unsigned int codePoint); + std::string codePointToUTF8(unsigned int codePoint); /// parses 4 hex characters that represent a unicode code point inline unsigned int parse4HexCodePoint(); /// parses \uXXXX[\uXXXX] unicode escape characters