Remove extra const from operator= declaration

This does not really matter too much but it's better to be consistent.
This commit is contained in:
Arseny Kapoulkine 2015-09-20 00:48:40 -07:00
parent 25cce38f50
commit bda55c818c

View File

@ -945,7 +945,7 @@ namespace pugi
// Non-copyable semantics // Non-copyable semantics
xml_document(const xml_document&); xml_document(const xml_document&);
const xml_document& operator=(const xml_document&); xml_document& operator=(const xml_document&);
void create(); void create();
void destroy(); void destroy();