3DS: Reformat initializer list

pull/1732/head
Turo Lamminen 2018-01-23 18:57:48 +02:00
parent 70ae30f26a
commit 6c4e3bce53
1 changed files with 8 additions and 8 deletions

View File

@ -105,14 +105,14 @@ static const aiImporterDesc desc = {
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------
// Constructor to be privately used by Importer // Constructor to be privately used by Importer
Discreet3DSImporter::Discreet3DSImporter() Discreet3DSImporter::Discreet3DSImporter()
: stream(), : stream()
mLastNodeIndex(), , mLastNodeIndex()
mCurrentNode(), , mCurrentNode()
mRootNode(), , mRootNode()
mScene(), , mScene()
mMasterScale(), , mMasterScale()
bHasBG(), , bHasBG()
bIsPrj() , bIsPrj()
{} {}
// ------------------------------------------------------------------------------------------------ // ------------------------------------------------------------------------------------------------