Gcc complained about superfluous const qualifier

This commit is contained in:
Simon Walton 2018-03-29 14:10:31 -07:00
parent 1b0b280f3a
commit e9ec4df36f

View file

@ -45,7 +45,7 @@ public:
const QUuid& getUUID() const { return _uuid; }
void setUUID(const QUuid& uuid);
const Node::LocalID getLocalID() const { return _localID; }
Node::LocalID getLocalID() const { return _localID; }
void setLocalID(Node::LocalID localID) { _localID = localID; }
QString getHostname() const { return _domainURL.host(); }