From e16695888163688688d56064e301562d9bc710cf Mon Sep 17 00:00:00 2001 From: Rohit Nirmal Date: Wed, 20 Apr 2016 13:31:49 -0500 Subject: [PATCH] Silence -Wreorder warnings. --- Sources/Engine/Brushes/Brush.h | 2 +- Sources/Engine/Entities/EntityProperties.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Engine/Brushes/Brush.h b/Sources/Engine/Brushes/Brush.h index 519c70c..7458953 100644 --- a/Sources/Engine/Brushes/Brush.h +++ b/Sources/Engine/Brushes/Brush.h @@ -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. */ diff --git a/Sources/Engine/Entities/EntityProperties.h b/Sources/Engine/Entities/EntityProperties.h index 99e35fe..6e51129 100644 --- a/Sources/Engine/Entities/EntityProperties.h +++ b/Sources/Engine/Entities/EntityProperties.h @@ -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) {}; };