Skip to content

Commit ab67ad8

Browse files
committed
Remove unjustified noexcept specifier
1ea40a2a3daf0f27f05cde14504f261d2cc902c6
1 parent a8cb56d commit ab67ad8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

yt/yt/core/misc/stripped_error.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ TOriginAttributes* TError::MutableOriginAttributes() const noexcept
492492
return Impl_->MutableOriginAttributes();
493493
}
494494

495-
void TError::SetAttributes(NYTree::IAttributeDictionaryPtr attributes) noexcept
495+
void TError::SetAttributes(NYTree::IAttributeDictionaryPtr attributes)
496496
{
497497
if (!Impl_) {
498498
return;

yt/yt/core/misc/stripped_error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class [[nodiscard]] TErrorOr<void>
149149

150150
// Used for deserialization only.
151151
TOriginAttributes* MutableOriginAttributes() const noexcept;
152-
void SetAttributes(NYTree::IAttributeDictionaryPtr attributes) noexcept;
152+
void SetAttributes(NYTree::IAttributeDictionaryPtr attributes);
153153

154154
TError Truncate(
155155
int maxInnerErrorCount = 2,

0 commit comments

Comments
 (0)