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
commit58cd0b86ed99a72df22479e26a20bc1c1e57e65e (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/scheme/scheme.h
parent3ed175181ceac225ee14e4519492ad2967a7bd73 (diff)
downloadydb-58cd0b86ed99a72df22479e26a20bc1c1e57e65e.tar.gz
Restoring authorship annotation for <osado@yandex-team.ru>. Commit 2 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 5548ce4297..3d7c59f3c9 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;