From 8c507ea007010dd34357bf781218a4e02566bada Mon Sep 17 00:00:00 2001 From: tpaviot Date: Tue, 3 Nov 2020 15:54:48 +0100 Subject: [PATCH] [g++-warning-fix] Fix wrong initialization order in SvgSerializer.h --- src/serializers/SvgSerializer.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/serializers/SvgSerializer.h b/src/serializers/SvgSerializer.h index 382b059088..b69e1feb71 100644 --- a/src/serializers/SvgSerializer.h +++ b/src/serializers/SvgSerializer.h @@ -118,18 +118,18 @@ protected: boost::optional> deferred_section_data_; boost::optional scale_, calculated_scale_, center_x_, center_y_; - bool rescale, print_space_names_, print_space_areas_, draw_door_arcs_; - bool with_section_heights_from_storey_, buffer_elements_; - bool is_floor_plan_; + bool with_section_heights_from_storey_, rescale, print_space_names_, print_space_areas_; + bool draw_door_arcs_, buffer_elements_, is_floor_plan_; + IfcParse::IfcFile* file; + IfcUtil::IfcBaseEntity* storey_; std::multimap paths; float_item_list xcoords, ycoords, radii; size_t xcoords_begin, ycoords_begin, radii_begin; boost::optional section_ref_, elevation_ref_; - IfcParse::IfcFile* file; - IfcUtil::IfcBaseEntity* storey_; + std::list element_buffer_; Handle(HLRBRep_Algo) hlr;