From 9a85fbc2250e7626aac49bdd525614f4e7e405d7 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Fri, 24 May 2019 15:38:35 +0200 Subject: [PATCH] Fix static/const declaration --- src/ifcwrap/IfcGeomWrapper.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcwrap/IfcGeomWrapper.i b/src/ifcwrap/IfcGeomWrapper.i index 05a39fd4c6..157f4c6c45 100644 --- a/src/ifcwrap/IfcGeomWrapper.i +++ b/src/ifcwrap/IfcGeomWrapper.i @@ -51,7 +51,7 @@ %extend IfcGeom::tree { - static IfcEntityList::ptr vector_to_list(const std::vector& ps) const { + static IfcEntityList::ptr vector_to_list(const std::vector& ps) { IfcEntityList::ptr r(new IfcEntityList); for (std::vector::const_iterator it = ps.begin(); it != ps.end(); ++it) { r->push(*it);