mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 02:20:25 +01:00
Merge pull request #34 from rohit-n/reorder
Silence -Wreorder warnings.
This commit is contained in:
commit
83b3e2fee3
|
@ -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. */
|
||||
|
|
|
@ -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) {};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user