Windows build fix

This commit is contained in:
Gunnar Beutner 2017-12-19 15:00:09 +01:00
parent 10a188d395
commit adc892bde7
1 changed files with 4 additions and 0 deletions

View File

@ -198,8 +198,12 @@ private:
class I2_CONFIG_API Expression
{
public:
Expression(void) = default;
Expression(const Expression&) = delete;
virtual ~Expression(void);
Expression& operator=(const Expression&) = delete;
ExpressionResult Evaluate(ScriptFrame& frame, DebugHint *dhint = nullptr) const;
virtual bool GetReference(ScriptFrame& frame, bool init_dict, Value *parent, String *index, DebugHint **dhint = nullptr) const;
virtual const DebugInfo& GetDebugInfo(void) const;