aboutsummaryrefslogtreecommitdiffstats
path: root/ydb/library/yql/ast/yql_expr.h
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /ydb/library/yql/ast/yql_expr.h
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
downloadydb-bd085aee9b4f7a0bee302ce687964ffb7098f986.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'ydb/library/yql/ast/yql_expr.h')
-rw-r--r--ydb/library/yql/ast/yql_expr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/ast/yql_expr.h b/ydb/library/yql/ast/yql_expr.h
index 593edc9ffb..d6eb544f9a 100644
--- a/ydb/library/yql/ast/yql_expr.h
+++ b/ydb/library/yql/ast/yql_expr.h
@@ -42,7 +42,7 @@
#define ENSURE_NOT_FROZEN_CTX \
YQL_ENSURE(!Frozen, "Change in frozen expr context.");
#else
- #define ENSURE_NOT_DELETED Y_VERIFY_DEBUG(!Dead(), "Access to dead node # %lu: %d '%s'", UniqueId_, (int)Type_, TString(ContentUnchecked()).data());
+ #define ENSURE_NOT_DELETED Y_VERIFY_DEBUG(!Dead(), "Access to dead node # %lu: %d '%s'", UniqueId_, (int)Type_, TString(ContentUnchecked()).data());
#define ENSURE_NOT_FROZEN Y_VERIFY_DEBUG(!Frozen());
#define ENSURE_NOT_FROZEN_CTX Y_VERIFY_DEBUG(!Frozen);
#endif
@@ -1395,7 +1395,7 @@ public:
template <class TKey>
bool IsCallable(const THashSet<TKey>& names) const {
ENSURE_NOT_DELETED
- return Type() == TExprNode::Callable && names.contains(Content());
+ return Type() == TExprNode::Callable && names.contains(Content());
}
bool IsCallable() const {