Whitespace

This commit is contained in:
howard-stearns 2016-03-29 17:06:19 -07:00
parent 86a77d4f55
commit 5381be6902
2 changed files with 2 additions and 3 deletions

View file

@ -270,7 +270,7 @@ public:
void run() override {
while (!_quit) {
QThread::sleep(HEARTBEAT_UPDATE_INTERVAL_SECS);
/* fixme
uint64_t lastHeartbeat = _heartbeat; // sample atomic _heartbeat, because we could context switch away and have it updated on us
uint64_t now = usecTimestampNow();
auto lastHeartbeatAge = (now > lastHeartbeat) ? now - lastHeartbeat : 0;
@ -319,7 +319,6 @@ public:
deadlockDetectionCrash();
}
#endif
*/
}
}

View file

@ -2003,4 +2003,4 @@ void EntityItem::globalizeProperties(EntityItemProperties& properties, const QSt
}
QUuid empty;
properties.setParentID(empty);
}
}