diff options
author | Aleksei Borzenkov <snaury@ydb.tech> | 2025-03-13 16:54:20 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-13 13:54:20 +0000 |
commit | 7beb42d23f78ce1b21c718eecd67f3bc5cc861c5 (patch) | |
tree | 994b3c9a364187605a685ae6c90149097e93973f /ydb/core/tablet_flat/flat_boot_misc.cpp | |
parent | 623829051c534fa4e4aa43590597a6f7f7119378 (diff) | |
download | ydb-7beb42d23f78ce1b21c718eecd67f3bc5cc861c5.tar.gz |
Remove unnecessary noexcept uses in LocalDB (#15649)
Diffstat (limited to 'ydb/core/tablet_flat/flat_boot_misc.cpp')
-rw-r--r-- | ydb/core/tablet_flat/flat_boot_misc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tablet_flat/flat_boot_misc.cpp b/ydb/core/tablet_flat/flat_boot_misc.cpp index e8ca8c203e..4e35fdeee6 100644 --- a/ydb/core/tablet_flat/flat_boot_misc.cpp +++ b/ydb/core/tablet_flat/flat_boot_misc.cpp @@ -9,7 +9,7 @@ namespace NKikimr { namespace NTabletFlatExecutor { namespace NBoot { -void TStages::FinalizeLeaderLogics(TResult &result, TSteppedCookieAllocatorFactory &steppedCookieAllocatorFactory) noexcept +void TStages::FinalizeLeaderLogics(TResult &result, TSteppedCookieAllocatorFactory &steppedCookieAllocatorFactory) { using EIdx = TCookie::EIdx; |