summaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorh0pless <[email protected]>2025-07-21 22:18:07 +0300
committerh0pless <[email protected]>2025-07-21 22:36:34 +0300
commit2b154aeb332987b0f068a470f486fe8350f99ae0 (patch)
tree391fc3b113c08252abc0de7dc5034ecd7ba4d209 /library/cpp
parentf30b72372452df7df6fdba12858bfc020b669772 (diff)
YT-18571: Fix missing semicolon
commit_hash:2d892bf3d9b67134ec8e9d461159ec4bbf0930b5
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/error/error.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yt/error/error.h b/library/cpp/yt/error/error.h
index 4b329105bcb..649644dd330 100644
--- a/library/cpp/yt/error/error.h
+++ b/library/cpp/yt/error/error.h
@@ -360,7 +360,7 @@ void ThrowErrorExceptionIfFailed(TErrorLike&& error);
// NB: When given an error and a string as arguments, this macro automatically wraps
// new error around the initial one.
#define THROW_ERROR_EXCEPTION_IF_FAILED(error, ...) \
- ::NYT::NDetail::ThrowErrorExceptionIfFailed((error) __VA_OPT__(,) __VA_ARGS__); \
+ ::NYT::NDetail::ThrowErrorExceptionIfFailed((error) __VA_OPT__(,) __VA_ARGS__) \
#define THROW_ERROR_EXCEPTION_UNLESS(condition, head, ...) \
if ((condition)) {\