mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
reorderd init of data members in ctor
This commit is contained in:
parent
51dca12a7b
commit
be4ec8920d
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ int hifiSockAddrMeta = qRegisterMetaType<HifiSockAddr>("HifiSockAddr");
|
|||
|
||||
AssignmentClient::AssignmentClient(int &argc, char **argv) :
|
||||
QCoreApplication(argc, argv),
|
||||
_assignmentServerHostname(DEFAULT_ASSIGNMENT_SERVER_HOSTNAME),
|
||||
_shutdownEventListener(this)
|
||||
_shutdownEventListener(this),
|
||||
_assignmentServerHostname(DEFAULT_ASSIGNMENT_SERVER_HOSTNAME)
|
||||
{
|
||||
LogUtils::init();
|
||||
|
||||
|
|
Loading…
Reference in a new issue