From c78e61c96ff5bdbb8e0deac4ef80f4064e58c837 Mon Sep 17 00:00:00 2001 From: Jan-Peter Nilsson Date: Sat, 2 Apr 2011 13:06:05 +0200 Subject: [PATCH] Initialize member variables in the same order they are defined to avoid compiler warning --- bullet/BtOgre.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bullet/BtOgre.cpp b/bullet/BtOgre.cpp index 82ed2cbc2..5dca915b6 100644 --- a/bullet/BtOgre.cpp +++ b/bullet/BtOgre.cpp @@ -379,10 +379,10 @@ namespace BtOgre { mIndexBuffer (0), mVertexCount (0), mIndexCount (0), - mBounds (Vector3(-1,-1,-1)), - mBoundRadius (-1), - mBoneIndex (0), mTransform (transform), + mBoundRadius (-1), + mBounds (Vector3(-1,-1,-1)), + mBoneIndex (0), mScale(1) { }