mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 22:25:58 +08:00
[muparser] Delete ParserByteCode copy and assignment ctors
These are not used.
This commit is contained in:
parent
8b0d2ff641
commit
e9c106b881
|
@ -92,8 +92,8 @@ class ParserByteCode {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ParserByteCode();
|
ParserByteCode();
|
||||||
ParserByteCode(const ParserByteCode &a_ByteCode) = default;
|
ParserByteCode(const ParserByteCode &a_ByteCode) = delete;
|
||||||
ParserByteCode &operator=(const ParserByteCode &a_ByteCode) = default;
|
ParserByteCode &operator=(const ParserByteCode &a_ByteCode) = delete;
|
||||||
|
|
||||||
void AddVar(value_type *a_pVar);
|
void AddVar(value_type *a_pVar);
|
||||||
void AddVal(value_type a_fVal);
|
void AddVal(value_type a_fVal);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user