We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 33f2b1c + c9791b1 commit eb61660Copy full SHA for eb61660
1 file changed
source/hardware/InstLib.h
@@ -64,8 +64,8 @@ namespace emp {
64
65
public:
66
InstLib() : inst_lib(), inst_funs(), name_map(), arg_map() { ; } ///< Default Constructor
67
- InstLib(const InstLib &) = default; ///< Copy Constructor
68
- InstLib(InstLib &&) = default; ///< Move Constructor
+ InstLib(const InstLib &) = delete; ///< Copy Constructor
+ InstLib(InstLib &&) = delete; ///< Move Constructor
69
~InstLib() { ; } ///< Destructor
70
71
InstLib & operator=(const InstLib &) = default; ///< Copy Operator
0 commit comments