From bda55c818c0936fe5e41e381794018f0fc60b1a3 Mon Sep 17 00:00:00 2001 From: Arseny Kapoulkine Date: Sun, 20 Sep 2015 00:48:40 -0700 Subject: Remove extra const from operator= declaration This does not really matter too much but it's better to be consistent. --- src/pugixml.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pugixml.hpp') 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(); -- cgit v1.2.3