1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-27 00:43:47 +00:00

This makes it quick to just delete the copy constructor.

Useful if you want to see where copy is done instead of move.
This commit is contained in:
King_DuckZ 2017-05-18 18:50:43 +01:00
parent cdd23d35d0
commit 4eb4261f4a

View file

@ -47,6 +47,8 @@ namespace tawashi {
};
HttpHeader();
HttpHeader (const HttpHeader&) = default;
HttpHeader (HttpHeader&&) = default;
HttpHeader (Types parType, HttpStatusCodes parCode, std::string&& parParam);
~HttpHeader() noexcept = default;