STEPFile.h: delete deleted copy ctor and move ctors. Class has a const member, so implicit creation is off anyway. Enables pre cpp11 compilation.

pull/875/head
Alexander Gessler 2016-05-05 15:40:36 +02:00 committed by Alexander Gessler
parent e7fd168114
commit 1daae7b7b9
1 changed files with 0 additions and 5 deletions

View File

@ -596,11 +596,6 @@ namespace STEP {
LazyObject(DB& db, uint64_t id, uint64_t line, const char* type,const char* args); LazyObject(DB& db, uint64_t id, uint64_t line, const char* type,const char* args);
~LazyObject(); ~LazyObject();
LazyObject( LazyObject const& ) = delete;
LazyObject operator=( LazyObject const& ) = delete;
LazyObject( LazyObject && ) = delete;
LazyObject operator=( LazyObject && ) = delete;
public: public:
Object& operator * () { Object& operator * () {