Fix a "declaration of 'identifier' hides class member" warning

This commit is contained in:
Xavier Lamorlette
2019-01-29 10:35:12 +01:00
committed by Thomas Krijnen
parent ef7eee411b
commit bd3118b4a3
+1 -1
View File
@@ -46,7 +46,7 @@ namespace IfcGeom {
const gp_GTrsf& Placement() const { return placement; }
bool hasStyle() const { return style != 0; }
const SurfaceStyle& Style() const { return *style; }
void setStyle(const SurfaceStyle* style) { this->style = style; }
void setStyle(const SurfaceStyle* newStyle) { style = newStyle; }
};
typedef std::vector<IfcRepresentationShapeItem> IfcRepresentationShapeItems;
}