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/scheme.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/scheme.h')
-rw-r--r-- | library/cpp/scheme/scheme.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/scheme/scheme.h b/library/cpp/scheme/scheme.h index 47cbb354c45..3d7c59f3c97 100644 --- a/library/cpp/scheme/scheme.h +++ b/library/cpp/scheme/scheme.h @@ -91,14 +91,14 @@ namespace NSc { inline TValue& operator=(TStringBuf t); inline TValue& operator=(const char* t); - inline TValue& operator=(TValue& v) &; - inline TValue& operator=(const TValue& v) &; - inline TValue& operator=(TValue&& v) & noexcept; - - inline TValue& operator=(TValue& v) && = delete; - inline TValue& operator=(const TValue& v) && = delete; - inline TValue& operator=(TValue&& v) && = delete; - + inline TValue& operator=(TValue& v) &; + inline TValue& operator=(const TValue& v) &; + inline TValue& operator=(TValue&& v) & noexcept; + + inline TValue& operator=(TValue& v) && = delete; + inline TValue& operator=(const TValue& v) && = delete; + inline TValue& operator=(TValue&& v) && = delete; + public: template <class T> // ui16 or TStringBuf inline TValue& operator[](const T& idx) { @@ -531,7 +531,7 @@ namespace NSc { } #include "scimpl.h" -#include "scheme_cast.h" +#include "scheme_cast.h" #ifdef _MSC_VER #pragma warning(default : 4521 4522) |