Remove move constructor

This commit is contained in:
Vasilii Rogin 2023-04-20 20:49:29 +03:00
parent 601f9ba164
commit 28411308e4
2 changed files with 0 additions and 8 deletions

View File

@ -42,12 +42,6 @@ SFallScriptValue::SFallScriptValue(ProgramValue& value)
}
}
SFallScriptValue::SFallScriptValue(SFallScriptValue&& other) noexcept
{
opcode = other.opcode;
std::exchange(other.pointerValue, nullptr);
}
SFallScriptValue::~SFallScriptValue()
{
// TODO: If type is string then free it

View File

@ -13,8 +13,6 @@ public:
SFallScriptValue(Object* value);
SFallScriptValue(ProgramValue& value);
SFallScriptValue(SFallScriptValue&& other) noexcept; // move constructor
bool isInt() const;
bool isFloat() const;
bool isPointer() const;