summaryrefslogtreecommitdiff
path: root/src/net/serverinfo.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-08 18:05:46 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-08 18:05:46 +0300
commit467a5c03ccb5ea2d1977bd84adcab69eefb4e051 (patch)
treea43709e19c87776f2db42304b6bd7f0c13721361 /src/net/serverinfo.h
parent9547e64f0f25bb9f50cac9ba9dc035fbc051d4c2 (diff)
downloadManaVerse-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.gz
ManaVerse-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.bz2
ManaVerse-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.tar.xz
ManaVerse-467a5c03ccb5ea2d1977bd84adcab69eefb4e051.zip
Add missing operator= in classes with copy constructors.
Diffstat (limited to 'src/net/serverinfo.h')
-rw-r--r--src/net/serverinfo.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h
index 45f042b0e..7df9e0066 100644
--- a/src/net/serverinfo.h
+++ b/src/net/serverinfo.h
@@ -89,6 +89,24 @@ class ServerInfo final
version.second = info.version.second;
}
+ void operator=(const ServerInfo &info)
+ {
+ type = info.type;
+ name = info.name;
+ hostname = info.hostname;
+ althostname = info.althostname;
+ description = info.description;
+ registerUrl = info.registerUrl;
+ onlineListUrl = info.onlineListUrl;
+ supportUrl = info.supportUrl;
+ updateMirrors = info.updateMirrors;
+ port = info.port;
+ save = info.save;
+ persistentIp = info.persistentIp;
+ version.first = info.version.first;
+ version.second = info.version.second;
+ }
+
bool isValid() const A_WARN_UNUSED
{
return !(hostname.empty()