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:
authorJanusz Chorko <janusz.chorko@apdu.pl>2016-08-26 22:17:38 +0300
committerJanusz Chorko <janusz.chorko@apdu.pl>2016-08-26 22:17:38 +0300
commit3b2441b87f99ab65f37b141a7b548ebadb607b96 (patch)
tree614f06b8a6eecbd8f2b8c51e118e913a473fd3dd /include/rapidjson/document.h
parentf54b0e47a08782a6131cc3d60f94d038fa6e0a51 (diff)
Removed non-compiling assignment operator. Fixed #718
Diffstat (limited to 'include/rapidjson/document.h')
-rw-r--r--include/rapidjson/document.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/rapidjson/document.h b/include/rapidjson/document.h
index e3e20dfb..b0f1f70b 100644
--- a/include/rapidjson/document.h
+++ b/include/rapidjson/document.h
@@ -316,8 +316,6 @@ struct GenericStringRef {
GenericStringRef(const GenericStringRef& rhs) : s(rhs.s), length(rhs.length) {}
- GenericStringRef& operator=(const GenericStringRef& rhs) { s = rhs.s; length = rhs.length; }
-
//! implicit conversion to plain CharType pointer
operator const Ch *() const { return s; }