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
xml_document(const xml_document&);
const xml_document& operator=(const xml_document&);
xml_document& operator=(const xml_document&);
void create();
void destroy();