From ab0e8b2f3aed7f871f756ce3dc7d2ca8d02d7483 Mon Sep 17 00:00:00 2001 From: Eren Okka Date: Sun, 17 Dec 2017 18:02:55 +0300 Subject: [PATCH] Fix MSVC warning C4819 Replaces a U+00A0 character with regular space, and fixes a typo. --- src/json.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json.hpp b/src/json.hpp index 91cd2a293..1f7e8dca2 100644 --- a/src/json.hpp +++ b/src/json.hpp @@ -6564,7 +6564,7 @@ class serializer // check that the additional bytes are present assert(i + bytes < s.size()); - // to useĀ \uxxxx escaping, we first need to caluclate + // to use \uxxxx escaping, we first need to calculate // the codepoint from the UTF-8 bytes int codepoint = 0;