From 96882f4977f2711c825c1b9b5426fd04aca5fddd Mon Sep 17 00:00:00 2001 From: Milo Yip Date: Fri, 4 Jul 2014 20:19:15 +0800 Subject: [PATCH] Prohibit copy constructor in StackStream. --- include/rapidjson/reader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/rapidjson/reader.h b/include/rapidjson/reader.h index 1a4be6f..dac1537 100644 --- a/include/rapidjson/reader.h +++ b/include/rapidjson/reader.h @@ -480,7 +480,7 @@ private: SizeType length_; private: - // Prohibit assignment for VC C4512 warning + StackStream(const StackStream&); StackStream& operator=(const StackStream&); };