Remove destructor
This commit is contained in:
parent
28411308e4
commit
4a84e0c5ae
|
@ -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;
|
||||
|
|
|
@ -17,8 +17,6 @@ public:
|
|||
bool isFloat() const;
|
||||
bool isPointer() const;
|
||||
int asInt() const;
|
||||
|
||||
~SFallScriptValue();
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue