diff options
author | ilnurkh <[email protected]> | 2023-10-10 10:09:12 +0300 |
---|---|---|
committer | ilnurkh <[email protected]> | 2023-10-10 10:26:34 +0300 |
commit | 335c640261b6272bc052a251d9b8780150090b45 (patch) | |
tree | 7d4a4954aacb63514087edaaf1cd0c9999fcb94d /util/folder/path.cpp | |
parent | b359f0072dbc794d0287c26984dd0ea0a2c27efc (diff) |
Y_VERIFY->Y_ABORT_UNLESS at ^u
https://clubs.at.yandex-team.ru/arcadia/29404
Diffstat (limited to 'util/folder/path.cpp')
-rw-r--r-- | util/folder/path.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/folder/path.cpp b/util/folder/path.cpp index f2bc2a033a8..29a1689870b 100644 --- a/util/folder/path.cpp +++ b/util/folder/path.cpp @@ -199,7 +199,7 @@ TFsPath::TSplit& TFsPath::GetSplit() const { } static Y_FORCE_INLINE void VerifyPath(const TStringBuf path) { - Y_VERIFY(!path.Contains('\0'), "wrong format of TFsPath: %s", EscapeC(path).c_str()); + Y_ABORT_UNLESS(!path.Contains('\0'), "wrong format of TFsPath: %s", EscapeC(path).c_str()); } TFsPath::TFsPath() { |