mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
uninitialized variable
This commit is contained in:
parent
f807384dfe
commit
b96e455b72
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ const int DIRTY_SIMULATION_FLAGS =
|
|||
class EntitySimulation : public QObject {
|
||||
Q_OBJECT
|
||||
public:
|
||||
EntitySimulation() : _mutex(QMutex::Recursive), _entityTree(NULL) { }
|
||||
EntitySimulation() : _mutex(QMutex::Recursive), _entityTree(NULL), _nextExpiry(quint64(-1)) { }
|
||||
virtual ~EntitySimulation() { setEntityTree(NULL); }
|
||||
|
||||
void lock() { _mutex.lock(); }
|
||||
|
|
Loading…
Reference in a new issue