aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/scimpl.h
diff options
context:
space:
mode:
authorepar <epar@yandex-team.ru>2022-02-10 16:50:02 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:02 +0300
commit904f1af50fdd9aae658a7b5688b5a497044c4584 (patch)
tree5fc4555525a8451ec9e74fde574490f4c72c8fc5 /library/cpp/scheme/scimpl.h
parent9473a88c91129dfe21343af486bebb93a0b33291 (diff)
downloadydb-904f1af50fdd9aae658a7b5688b5a497044c4584.tar.gz
Restoring authorship annotation for <epar@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/scheme/scimpl.h')
-rw-r--r--library/cpp/scheme/scimpl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/scheme/scimpl.h b/library/cpp/scheme/scimpl.h
index 4f68f16290..089817372d 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;