aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/scheme.h
diff options
context:
space:
mode:
authorosado <osado@yandex-team.ru>2022-02-10 16:49:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:18 +0300
commit3ed175181ceac225ee14e4519492ad2967a7bd73 (patch)
treea1a8375fb33669212c8d4f3eb2e50f4f719b6533 /library/cpp/scheme/scheme.h
parent883d905c560ebed4b7f38d021b424d75c4521a6f (diff)
downloadydb-3ed175181ceac225ee14e4519492ad2967a7bd73.tar.gz
Restoring authorship annotation for <osado@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/scheme/scheme.h')
-rw-r--r--library/cpp/scheme/scheme.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/scheme/scheme.h b/library/cpp/scheme/scheme.h
index 3d7c59f3c97..5548ce42976 100644
--- a/library/cpp/scheme/scheme.h
+++ b/library/cpp/scheme/scheme.h
@@ -15,7 +15,7 @@ namespace NSc {
// todo: try to remove some rarely used methods
class TValue {
public:
- enum class EType {
+ enum class EType {
Null = 0 /* "Null" */,
Bool /* "Bool" */,
IntNumber /* "Int" */,
@@ -396,9 +396,9 @@ namespace NSc {
static const TArray& DefaultArray();
static const TDict& DefaultDict();
static const TValue& DefaultValue();
- static const TValue& Null() {
- return DefaultValue();
- }
+ static const TValue& Null() {
+ return DefaultValue();
+ }
void DoWriteJsonImpl(IOutputStream&, const TJsonOpts&, NImpl::TKeySortContext&, NImpl::TSelfLoopContext&) const;