SWIG 2.0 compatability

This commit is contained in:
Scott Fennell 2019-06-18 11:00:09 -05:00
parent 4d247c94db
commit b676ecac65

View File

@ -1270,9 +1270,10 @@ namespace Trick {
virtual int exec_terminate(const char *file_name, const char *error);
/* deleted functions */
private:
/* SWIG doesn't like the Executive assignment operator because of ofstream init_log_stream */
Executive& operator=(const Executive&) = delete;
Executive& operator=(const Executive&); /* = delete; '= delete' is not compatible with SWIG 2.0.
stick to 'private' for now */
} ;