summaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/error/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/yt/error/error.h')
-rw-r--r--library/cpp/yt/error/error.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/library/cpp/yt/error/error.h b/library/cpp/yt/error/error.h
index 1e5c2147d82..73904315065 100644
--- a/library/cpp/yt/error/error.h
+++ b/library/cpp/yt/error/error.h
@@ -370,10 +370,8 @@ void ThrowErrorExceptionIfFailed(TErrorLike&& error);
::NYT::NDetail::ThrowErrorExceptionIfFailed((error) __VA_OPT__(,) __VA_ARGS__) \
#define THROW_ERROR_EXCEPTION_UNLESS(condition, head, ...) \
- if ((condition)) {\
- } else { \
- THROW_ERROR ::NYT::TError(head __VA_OPT__(,) __VA_ARGS__); \
- }
+ if ((condition)) {} else \
+ THROW_ERROR ::NYT::TError(head __VA_OPT__(,) __VA_ARGS__)
#define THROW_ERROR_EXCEPTION_IF(condition, head, ...) \
THROW_ERROR_EXCEPTION_UNLESS(!(condition), head, __VA_ARGS__)