Добавление nodiscard

This commit is contained in:
2026-01-22 08:38:55 +03:00
parent 05a135afc6
commit 14561b303e
10 changed files with 32 additions and 19 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ template <class Body, class Allocator, class ResponseType>
class IExecutor
{
public:
virtual boost::beast::http::response<ResponseType> operator ()(
[[nodiscard]] virtual boost::beast::http::response<ResponseType> operator ()(
boost::beast::http::request<Body, boost::beast::http::basic_fields<Allocator>>&& req
) = 0;
virtual ~IExecutor() = default;