Add [[nodiscard]] to make_request().

This commit is contained in:
tastytea 2020-01-04 19:06:27 +01:00
parent cac3e0b505
commit ccc9b8235e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07

View File

@ -78,6 +78,7 @@ public:
//! Move assignment operator
CURLWrapper& operator=(CURLWrapper &&other) noexcept = default;
[[nodiscard]]
string make_request(const http_method &meth, const string_view &uri);
private: