Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/miloyip/rapidjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Yip <miloyip@gmail.com>2016-04-05 18:56:50 +0300
committerMilo Yip <miloyip@gmail.com>2016-04-05 18:56:50 +0300
commit35ccca8b7430f8b354142131a632f542cf162206 (patch)
tree3d159f8496ce1b48f83d7d8302d1fa1127589608 /include/rapidjson/encodedstream.h
parent8991037ecd1a3a2bec97813b61c2a1993ad7fb6d (diff)
Try to fix VC warning C4512
Diffstat (limited to 'include/rapidjson/encodedstream.h')
-rw-r--r--include/rapidjson/encodedstream.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/rapidjson/encodedstream.h b/include/rapidjson/encodedstream.h
index c402e5c3..c12caac2 100644
--- a/include/rapidjson/encodedstream.h
+++ b/include/rapidjson/encodedstream.h
@@ -84,6 +84,10 @@ public:
Ch* PutBegin() { return 0; }
size_t PutEnd(Ch*) { return 0; }
+private:
+ EncodedInputStream(const EncodedInputStream&);
+ EncodedInputStream& operator=(const EncodedInputStream&);
+
MemoryStream& is_;
};