Skip to content

Commit

Permalink
Removed non-compiling assignment operator. Fixed #718
Browse files Browse the repository at this point in the history
  • Loading branch information
yachoor committed Aug 26, 2016
1 parent f54b0e4 commit 3b2441b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions include/rapidjson/document.h
Original file line number Diff line number Diff line change
Expand Up @@ -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; }

Expand Down

0 comments on commit 3b2441b

Please sign in to comment.