diff options
author | bulatman <bulatman@yandex-team.com> | 2023-06-24 00:07:56 +0300 |
---|---|---|
committer | bulatman <bulatman@yandex-team.com> | 2023-06-24 00:07:56 +0300 |
commit | c203a40b3ad69fa879519c38e45c641cb2eaee84 (patch) | |
tree | ca5d8d612fdc0348c9135386b1dfc142f9f5689e /library | |
parent | 234fdc45c2d3c6de987f600acc75563093420730 (diff) | |
download | ydb-c203a40b3ad69fa879519c38e45c641cb2eaee84.tar.gz |
Require semicolon after Y_DECLARE*_FLAGS
Diffstat (limited to 'library')
-rw-r--r-- | library/cpp/actors/wilson/wilson_span.h | 4 | ||||
-rw-r--r-- | library/cpp/neh/http_common.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/actors/wilson/wilson_span.h b/library/cpp/actors/wilson/wilson_span.h index 05dd5a8343..d470c02c0e 100644 --- a/library/cpp/actors/wilson/wilson_span.h +++ b/library/cpp/actors/wilson/wilson_span.h @@ -43,8 +43,8 @@ namespace NWilson { AUTO_END = 1, }; - Y_DECLARE_FLAGS(TFlags, EFlags) - Y_DECLARE_OPERATORS_FOR_FLAGS(TFlags) + Y_DECLARE_FLAGS(TFlags, EFlags); + Y_DECLARE_OPERATORS_FOR_FLAGS(TFlags); class TSpan { struct TData { diff --git a/library/cpp/neh/http_common.h b/library/cpp/neh/http_common.h index 91b4ca1356..a96f10a200 100644 --- a/library/cpp/neh/http_common.h +++ b/library/cpp/neh/http_common.h @@ -267,8 +267,8 @@ namespace NNeh { AbsoluteUri = 1, }; - Y_DECLARE_FLAGS(ERequestFlags, ERequestFlag) - Y_DECLARE_OPERATORS_FOR_FLAGS(ERequestFlags) + Y_DECLARE_FLAGS(ERequestFlags, ERequestFlag); + Y_DECLARE_OPERATORS_FOR_FLAGS(ERequestFlags); static constexpr ERequestType DefaultRequestType = ERequestType::Any; |