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:
parent
cdd23d35d0
commit
4eb4261f4a
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue