Remove destructor

This commit is contained in:
Vasilii Rogin 2023-04-20 20:50:04 +03:00
parent 28411308e4
commit 4a84e0c5ae
2 changed files with 0 additions and 7 deletions

View File

@ -42,11 +42,6 @@ SFallScriptValue::SFallScriptValue(ProgramValue& value)
}
}
SFallScriptValue::~SFallScriptValue()
{
// TODO: If type is string then free it
}
bool SFallScriptValue::isInt() const
{
return opcode == VALUE_TYPE_INT;

View File

@ -17,8 +17,6 @@ public:
bool isFloat() const;
bool isPointer() const;
int asInt() const;
~SFallScriptValue();
};
}