summaryrefslogtreecommitdiffstats
path: root/util/folder/path.cpp
diff options
context:
space:
mode:
authorilnurkh <[email protected]>2023-10-10 10:09:12 +0300
committerilnurkh <[email protected]>2023-10-10 10:26:34 +0300
commit335c640261b6272bc052a251d9b8780150090b45 (patch)
tree7d4a4954aacb63514087edaaf1cd0c9999fcb94d /util/folder/path.cpp
parentb359f0072dbc794d0287c26984dd0ea0a2c27efc (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.cpp2
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() {