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
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue