From fa0ee42cc9d6f3b18c635f509b4d85b66da459f3 Mon Sep 17 00:00:00 2001
From: Lee Clagett <code@leeclagett.com>
Date: Fri, 30 Dec 2016 02:14:06 -0500
Subject: [PATCH] Workarounds for gcc 4.8

---
 contrib/epee/include/net/http_auth.h | 13 ++++++++++---
 1 file 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;
       };