aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/atexit.cpp
diff options
context:
space:
mode:
authorand42 <and42@yandex-team.ru>2022-02-10 16:47:12 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:12 +0300
commit984590e9d9d7c0f912885d93ae78be402ae7b4f4 (patch)
tree339adc63bce23800021202ae4a8328a843dc447a /util/system/atexit.cpp
parent4fc9a1a64db469cc94894abfec740aa5c9e9789b (diff)
downloadydb-984590e9d9d7c0f912885d93ae78be402ae7b4f4.tar.gz
Restoring authorship annotation for <and42@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/system/atexit.cpp')
-rw-r--r--util/system/atexit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/system/atexit.cpp b/util/system/atexit.cpp
index 25dc673b5f..74fb10b6b1 100644
--- a/util/system/atexit.cpp
+++ b/util/system/atexit.cpp
@@ -45,15 +45,15 @@ namespace {
Y_ASSERT(c);
Items_.pop();
-
+
{
auto unguard = Unguard(guard);
-
+
try {
- c->Func(c->Ctx);
+ c->Func(c->Ctx);
} catch (...) {
// ¯\_(ツ)_/¯
- }
+ }
}
}
}