diff options
author | tender-bum <tender-bum@yandex-team.ru> | 2022-02-10 16:50:01 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:01 +0300 |
commit | c78b06a63de7beec995c1007bc5332bdf3d75b69 (patch) | |
tree | 729de992758f40b85278d4abaad655be5dd68dbc /library/cpp/xml/document | |
parent | 95ab23a39b5482a434361566cabdd5b0a433cb43 (diff) | |
download | ydb-c78b06a63de7beec995c1007bc5332bdf3d75b69.tar.gz |
Restoring authorship annotation for <tender-bum@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/xml/document')
-rw-r--r-- | library/cpp/xml/document/xml-document-decl.h | 4 | ||||
-rw-r--r-- | library/cpp/xml/document/xml-document.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/xml/document/xml-document-decl.h b/library/cpp/xml/document/xml-document-decl.h index bfda1fb7e6..6fdf078e5c 100644 --- a/library/cpp/xml/document/xml-document-decl.h +++ b/library/cpp/xml/document/xml-document-decl.h @@ -99,8 +99,8 @@ namespace NXml { }; public: - TConstNodes(const TConstNodes& nodes); - TConstNodes& operator=(const TConstNodes& nodes); + TConstNodes(const TConstNodes& nodes); + TConstNodes& operator=(const TConstNodes& nodes); TConstNodes(TConstNodesRef ref); TConstNodes& operator=(TConstNodesRef ref); diff --git a/library/cpp/xml/document/xml-document.cpp b/library/cpp/xml/document/xml-document.cpp index 18a554d732..bd27136bf5 100644 --- a/library/cpp/xml/document/xml-document.cpp +++ b/library/cpp/xml/document/xml-document.cpp @@ -331,14 +331,14 @@ namespace NXml { SaveInternal(stream, enc, options); } - TConstNodes::TConstNodes(const TConstNodes& nodes) + TConstNodes::TConstNodes(const TConstNodes& nodes) : SizeValue(nodes.Size()) , Doc(nodes.Doc) , Obj(nodes.Obj) { } - TConstNodes& TConstNodes::operator=(const TConstNodes& nodes) { + TConstNodes& TConstNodes::operator=(const TConstNodes& nodes) { if (this != &nodes) { SizeValue = nodes.Size(); Doc = nodes.Doc; |