mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-26 10:11:46 +00:00
Fix a "declaration of 'identifier' hides class member" warning
This commit is contained in:
committed by
Thomas Krijnen
parent
ef7eee411b
commit
bd3118b4a3
@@ -46,7 +46,7 @@ namespace IfcGeom {
|
|||||||
const gp_GTrsf& Placement() const { return placement; }
|
const gp_GTrsf& Placement() const { return placement; }
|
||||||
bool hasStyle() const { return style != 0; }
|
bool hasStyle() const { return style != 0; }
|
||||||
const SurfaceStyle& Style() const { return *style; }
|
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;
|
typedef std::vector<IfcRepresentationShapeItem> IfcRepresentationShapeItems;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user