mirror of https://github.com/Icinga/icinga2.git
Windows build fix
This commit is contained in:
parent
10a188d395
commit
adc892bde7
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue