From adc892bde71a916ea3c4206afce1fcfacb0b2999 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Tue, 19 Dec 2017 15:00:09 +0100 Subject: [PATCH] Windows build fix --- lib/config/expression.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/config/expression.hpp b/lib/config/expression.hpp index bd6639ba8..46a373556 100644 --- a/lib/config/expression.hpp +++ b/lib/config/expression.hpp @@ -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; -- 2.40.0