[muparser] Delete ParserByteCode copy and assignment ctors

These are not used.
This commit is contained in:
ridiculousfish 2017-12-18 11:18:20 -08:00
parent 8b0d2ff641
commit e9c106b881

View File

@ -92,8 +92,8 @@ class ParserByteCode {
public:
ParserByteCode();
ParserByteCode(const ParserByteCode &a_ByteCode) = default;
ParserByteCode &operator=(const ParserByteCode &a_ByteCode) = default;
ParserByteCode(const ParserByteCode &a_ByteCode) = delete;
ParserByteCode &operator=(const ParserByteCode &a_ByteCode) = delete;
void AddVar(value_type *a_pVar);
void AddVal(value_type a_fVal);