mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 16:12:14 +11:00
🐎⚡ noexcept and new constructor
This commit is contained in:
parent
67a3d02c82
commit
4b5e5d930c
1 changed files with 3 additions and 2 deletions
|
|
@ -7,6 +7,7 @@ struct BankResponse
|
||||||
drogon::HttpStatusCode first = drogon::k200OK;
|
drogon::HttpStatusCode first = drogon::k200OK;
|
||||||
std::string second;
|
std::string second;
|
||||||
|
|
||||||
BankResponse();
|
BankResponse() noexcept ;
|
||||||
BankResponse(drogon::HttpStatusCode code, std::string &&str);
|
BankResponse(drogon::HttpStatusCode code, std::string &&str) noexcept ;
|
||||||
|
BankResponse(drogon::HttpStatusCode code, const std::string &str) noexcept ;
|
||||||
};
|
};
|
||||||
Loading…
Reference in a new issue