mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-16 08:12:12 +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;
|
||||
std::string second;
|
||||
|
||||
BankResponse();
|
||||
BankResponse(drogon::HttpStatusCode code, std::string &&str);
|
||||
BankResponse() noexcept ;
|
||||
BankResponse(drogon::HttpStatusCode code, std::string &&str) noexcept ;
|
||||
BankResponse(drogon::HttpStatusCode code, const std::string &str) noexcept ;
|
||||
};
|
||||
Loading…
Reference in a new issue