request: [[nodiscard]]

This commit is contained in:
Michele Caini 2024-10-23 09:30:03 +02:00
parent e774913db9
commit 08350199e3

View File

@ -18,7 +18,7 @@ namespace uvw {
template<typename T, typename U, typename... E> template<typename T, typename U, typename... E>
class request: public resource<T, U, E...> { class request: public resource<T, U, E...> {
protected: protected:
static auto reserve(U *req) { [[nodiscard]] static auto reserve(U *req) {
auto ptr = static_cast<T *>(req->data)->shared_from_this(); auto ptr = static_cast<T *>(req->data)->shared_from_this();
ptr->self_reset(); ptr->self_reset();
return ptr; return ptr;
@ -47,7 +47,7 @@ public:
* @brief Returns the size of the underlying request type. * @brief Returns the size of the underlying request type.
* @return The size of the underlying request type. * @return The size of the underlying request type.
*/ */
std::size_t size() const noexcept { [[nodiscard]] std::size_t size() const noexcept {
return uv_req_size(reinterpret_cast<const uv_req_t *>(this->raw())->type); return uv_req_size(reinterpret_cast<const uv_req_t *>(this->raw())->type);
} }
}; };