From 6c4e3bce5301d48275fbc1a51508ad0e79ef9aae Mon Sep 17 00:00:00 2001 From: Turo Lamminen Date: Tue, 23 Jan 2018 18:57:48 +0200 Subject: [PATCH] 3DS: Reformat initializer list --- code/3DSLoader.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/code/3DSLoader.cpp b/code/3DSLoader.cpp index 26c487abf..b5534f157 100644 --- a/code/3DSLoader.cpp +++ b/code/3DSLoader.cpp @@ -105,14 +105,14 @@ static const aiImporterDesc desc = { // ------------------------------------------------------------------------------------------------ // Constructor to be privately used by Importer Discreet3DSImporter::Discreet3DSImporter() - : stream(), - mLastNodeIndex(), - mCurrentNode(), - mRootNode(), - mScene(), - mMasterScale(), - bHasBG(), - bIsPrj() +: stream() +, mLastNodeIndex() +, mCurrentNode() +, mRootNode() +, mScene() +, mMasterScale() +, bHasBG() +, bIsPrj() {} // ------------------------------------------------------------------------------------------------