mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-01 05:39:41 +00:00
Merge pull request #3149 from bosvensson1/patch-24
With this PR we fix a -Wreorder warning.
This commit is contained in:
commit
0d1d3e67bc
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ namespace MWWorld
|
|||
}
|
||||
|
||||
RefData::RefData()
|
||||
: mBaseNode(nullptr), mDeletedByContentFile(false), mEnabled (true), mCount (1), mCustomData (nullptr), mChanged(false), mFlags(0), mPhysicsPostponed(false)
|
||||
: mBaseNode(nullptr), mDeletedByContentFile(false), mEnabled (true), mPhysicsPostponed(false), mCount (1), mCustomData (nullptr), mChanged(false), mFlags(0)
|
||||
{
|
||||
for (int i=0; i<3; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue