diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-01-08 16:41:03 -0800 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-01-08 16:41:03 -0800 |
| commit | 866463f37bb15a8d9c8830dc1e9af573a1577e99 (patch) | |
| tree | 6ee3ed548e403b8c62b66f11bd8a5d34b4d4d8ea | |
| parent | 2a996f492f933a6b7c27117904fecc447d0c2dc1 (diff) | |
| parent | fa0ee42cc9d6f3b18c635f509b4d85b66da459f3 (diff) | |
| download | monzero-core-866463f37bb15a8d9c8830dc1e9af573a1577e99.tar.gz monzero-core-866463f37bb15a8d9c8830dc1e9af573a1577e99.tar.xz monzero-core-866463f37bb15a8d9c8830dc1e9af573a1577e99.zip | |
Merge pull request #1514
fa0ee42c Workarounds for gcc 4.8 (Lee Clagett)
| -rw-r--r-- | contrib/epee/include/net/http_auth.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/contrib/epee/include/net/http_auth.h b/contrib/epee/include/net/http_auth.h index 1931b6115..795d213d9 100644 --- a/contrib/epee/include/net/http_auth.h +++ b/contrib/epee/include/net/http_auth.h @@ -45,15 +45,22 @@ namespace net_utils public: struct login { - login() = delete; + login() : username(), password() {} + login(std::string username_, std::string password_) + : username(std::move(username_)), password(std::move(password_)) + {} + std::string username; std::string password; }; struct session { - session() = delete; - const login credentials; + session(login credentials_) + : credentials(std::move(credentials_)), nonce(), counter(0) + {} + + login credentials; std::string nonce; std::uint32_t counter; }; |
