Silence -Wreorder warnings.

This commit is contained in:
Rohit Nirmal 2016-04-20 13:31:49 -05:00
parent 3e84eafe15
commit e166958881
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ public:
inline CBrushEdge(void) : bed_pwedWorking(NULL) {};
/* Constructor with two vertices. */
inline CBrushEdge(CBrushVertex *pbvx0, CBrushVertex *pbvx1)
: bed_pwedWorking(NULL), bed_pbvxVertex0(pbvx0), bed_pbvxVertex1(pbvx1) {};
: bed_pbvxVertex0(pbvx0), bed_pbvxVertex1(pbvx1), bed_pwedWorking(NULL) {};
/* Clear the object. */
inline void Clear(void) {};
/* Test if this edge touches another one. */

View File

@ -121,9 +121,9 @@ public:
, ep_ulID (ulID )
, ep_slOffset (slOffset )
, ep_strName (strName )
, ep_ulFlags (ulFlags )
, ep_chShortcut (chShortcut )
, ep_colColor (colColor )
, ep_ulFlags (ulFlags )
{};
CEntityProperty(void) {};
};