mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 21:55:03 +02:00
Windows build fix
This commit is contained in:
parent
10a188d395
commit
adc892bde7
@ -198,8 +198,12 @@ private:
|
|||||||
class I2_CONFIG_API Expression
|
class I2_CONFIG_API Expression
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
Expression(void) = default;
|
||||||
|
Expression(const Expression&) = delete;
|
||||||
virtual ~Expression(void);
|
virtual ~Expression(void);
|
||||||
|
|
||||||
|
Expression& operator=(const Expression&) = delete;
|
||||||
|
|
||||||
ExpressionResult Evaluate(ScriptFrame& frame, DebugHint *dhint = nullptr) const;
|
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 bool GetReference(ScriptFrame& frame, bool init_dict, Value *parent, String *index, DebugHint **dhint = nullptr) const;
|
||||||
virtual const DebugInfo& GetDebugInfo(void) const;
|
virtual const DebugInfo& GetDebugInfo(void) const;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user