mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:42:58 +02:00
fix warning about order of ctor initialization
This commit is contained in:
parent
aa5a59c3dc
commit
25ff9e4b59
1 changed files with 1 additions and 1 deletions
|
@ -64,9 +64,9 @@ EntityItem::EntityItem(const EntityItemID& entityItemID) :
|
||||||
_simulatorIDChangedTime(0),
|
_simulatorIDChangedTime(0),
|
||||||
_marketplaceID(ENTITY_ITEM_DEFAULT_MARKETPLACE_ID),
|
_marketplaceID(ENTITY_ITEM_DEFAULT_MARKETPLACE_ID),
|
||||||
_name(ENTITY_ITEM_DEFAULT_NAME),
|
_name(ENTITY_ITEM_DEFAULT_NAME),
|
||||||
_physicsInfo(nullptr),
|
|
||||||
_dirtyFlags(0),
|
_dirtyFlags(0),
|
||||||
_element(nullptr),
|
_element(nullptr),
|
||||||
|
_physicsInfo(nullptr),
|
||||||
_simulated(false)
|
_simulated(false)
|
||||||
{
|
{
|
||||||
quint64 now = usecTimestampNow();
|
quint64 now = usecTimestampNow();
|
||||||
|
|
Loading…
Reference in a new issue