From 3595b1f677a2cc331dfea301cccf06cca0caa5d1 Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Sat, 20 Feb 2016 16:33:29 +0800 Subject: [PATCH] Fix VC compilation error --- include/rapidjson/encodedstream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rapidjson/encodedstream.h b/include/rapidjson/encodedstream.h index 215e145..877c3ac 100644 --- a/include/rapidjson/encodedstream.h +++ b/include/rapidjson/encodedstream.h @@ -67,7 +67,7 @@ private: template <> class EncodedInputStream, MemoryStream> { public: - typedef typename UTF8<>::Ch Ch; + typedef UTF8<>::Ch Ch; EncodedInputStream(MemoryStream& is) : is_(is) { if (static_cast(is_.Peek()) == 0xEFu) is_.Take();