diff options
author | epar <epar@yandex-team.ru> | 2022-02-10 16:50:02 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:50:02 +0300 |
commit | 5787a7ada46a9bc3f730ce62b840338025f911d9 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/scheme/scimpl.h | |
parent | 904f1af50fdd9aae658a7b5688b5a497044c4584 (diff) | |
download | ydb-5787a7ada46a9bc3f730ce62b840338025f911d9.tar.gz |
Restoring authorship annotation for <epar@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/scheme/scimpl.h')
-rw-r--r-- | library/cpp/scheme/scimpl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/scheme/scimpl.h b/library/cpp/scheme/scimpl.h index 089817372d..4f68f16290 100644 --- a/library/cpp/scheme/scimpl.h +++ b/library/cpp/scheme/scimpl.h @@ -517,7 +517,7 @@ namespace NSc { return SetString(t); } - TValue& TValue::operator=(TValue& v) & { + TValue& TValue::operator=(TValue& v) & { if (!Same(*this, v)) { //Extend TheCore lifetime not to trigger possible v deletion via parent-child chain auto tmpCore = TheCore; @@ -527,7 +527,7 @@ namespace NSc { return *this; } - TValue& TValue::operator=(const TValue& v) & { + TValue& TValue::operator=(const TValue& v) & { if (!Same(*this, v)) { //Extend TheCore lifetime not to trigger possible v deletion via parent-child chain auto tmpCore = TheCore; @@ -537,7 +537,7 @@ namespace NSc { return *this; } - TValue& TValue::operator=(TValue&& v) & noexcept { + TValue& TValue::operator=(TValue&& v) & noexcept { if (!Same(*this, v)) { //Extend TheCore lifetime not to trigger possible v deletion via parent-child chain auto tmpCore = TheCore; |