diff options
Diffstat (limited to 'library/cpp/yson/node/node.cpp')
-rw-r--r-- | library/cpp/yson/node/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yson/node/node.cpp b/library/cpp/yson/node/node.cpp index 3733c3cae2..5156033cfe 100644 --- a/library/cpp/yson/node/node.cpp +++ b/library/cpp/yson/node/node.cpp @@ -71,7 +71,7 @@ bool operator<(const TNode& lhs, const TNode& rhs) case TNode::Undefined: return false; default: - Y_FAIL("Unexpected type: %d", lhs.GetType()); + Y_ABORT("Unexpected type: %d", lhs.GetType()); } } |