From 3fa934a0568948dcfe06414c28324c7f0e0ca0f3 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 1 Jan 2014 11:14:39 +0000 Subject: [PATCH] Fix from https://github.com/yorikvanhavre/IfcOpenShell/commit/1cd23609369d4f6165648a55c39ad268af9cae33 --- src/ifcparse/IfcUtil.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ifcparse/IfcUtil.h b/src/ifcparse/IfcUtil.h index 03ce7a754d..0b56df85bc 100644 --- a/src/ifcparse/IfcUtil.h +++ b/src/ifcparse/IfcUtil.h @@ -106,7 +106,6 @@ public: inline void push(SHARED_PTR< IfcTemplatedEntityList > t) { for ( typename T::it it = t->begin(); it != t->end(); ++it ) push(*it); } inline it begin() { return ls.begin(); } inline it end() { return ls.end(); } - inline T operator[] (int i) { return ls[i]; } inline unsigned int Size() const { return (unsigned int) ls.size(); } IfcEntities generalize() { IfcEntities r (new IfcEntityList());