summaryrefslogtreecommitdiff
path: root/src/pugixml.hpp
diff options
context:
space:
mode:
authorArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-09-20 00:48:40 -0700
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2015-09-20 00:48:40 -0700
commitbda55c818c0936fe5e41e381794018f0fc60b1a3 (patch)
tree38de489116b9f05d4ac2fdc919b6f8cb9f7012f0 /src/pugixml.hpp
parent25cce38f50123d0ca88fb0920df6acdde05a53ff (diff)
Remove extra const from operator= declaration
This does not really matter too much but it's better to be consistent.
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r--src/pugixml.hpp2
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();