STEPFile.h: delete deleted copy ctor and move ctors. Class has a const member, so implicit creation is off anyway. Enables pre cpp11 compilation.
parent
e7fd168114
commit
1daae7b7b9
|
@ -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 * () {
|
||||||
|
|
Loading…
Reference in New Issue