mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
Gcc complained about superfluous const qualifier
This commit is contained in:
parent
1b0b280f3a
commit
e9ec4df36f
1 changed files with 1 additions and 1 deletions
|
@ -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(); }
|
||||
|
|
Loading…
Reference in a new issue