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/cpp/neh/http_common.h | |
parent | 234fdc45c2d3c6de987f600acc75563093420730 (diff) | |
download | ydb-c203a40b3ad69fa879519c38e45c641cb2eaee84.tar.gz |
Require semicolon after Y_DECLARE*_FLAGS
Diffstat (limited to 'library/cpp/neh/http_common.h')
-rw-r--r-- | library/cpp/neh/http_common.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |