Skip to content

Commit

Permalink
Fix static/const declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
aothms committed May 24, 2019
1 parent 784c172 commit 9a85fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ifcwrap/IfcGeomWrapper.i
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

%extend IfcGeom::tree {

static IfcEntityList::ptr vector_to_list(const std::vector<IfcSchema::IfcProduct*>& ps) const {
static IfcEntityList::ptr vector_to_list(const std::vector<IfcSchema::IfcProduct*>& ps) {
IfcEntityList::ptr r(new IfcEntityList);
for (std::vector<IfcSchema::IfcProduct*>::const_iterator it = ps.begin(); it != ps.end(); ++it) {
r->push(*it);
Expand Down

0 comments on commit 9a85fbc

Please sign in to comment.