BUGFIX: Fix compiler warning: wrong initialization order in initlist.

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@518 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
pull/1/head
kimmi 2009-12-24 11:29:28 +00:00
parent 07029ea363
commit c920982464
1 changed files with 4 additions and 4 deletions

View File

@ -61,9 +61,9 @@ namespace Assimp {
*/ */
struct TTUpdateInfo struct TTUpdateInfo
{ {
TTUpdateInfo() TTUpdateInfo() :
: mat (NULL) directShortcut (NULL)
, directShortcut (NULL) , mat (NULL)
, semantic (0) , semantic (0)
, index (0) , index (0)
{} {}
@ -72,7 +72,7 @@ struct TTUpdateInfo
unsigned int* directShortcut; unsigned int* directShortcut;
//! Material //! Material
MaterialHelper* mat; MaterialHelper *mat;
//! Texture type and index //! Texture type and index
unsigned int semantic, index; unsigned int semantic, index;