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:
parent
25cce38f50
commit
bda55c818c
@ -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();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user