diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-09-20 00:48:40 -0700 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2015-09-20 00:48:40 -0700 |
commit | bda55c818c0936fe5e41e381794018f0fc60b1a3 (patch) | |
tree | 38de489116b9f05d4ac2fdc919b6f8cb9f7012f0 | |
parent | 25cce38f50123d0ca88fb0920df6acdde05a53ff (diff) |
Remove extra const from operator= declaration
This does not really matter too much but it's better to be consistent.
-rw-r--r-- | src/pugixml.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index cdd24b6..f70252e 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -945,7 +945,7 @@ namespace pugi // Non-copyable semantics xml_document(const xml_document&); - const xml_document& operator=(const xml_document&); + xml_document& operator=(const xml_document&); void create(); void destroy(); |