mirror of https://github.com/Icinga/icinga2.git
Build fix.
This commit is contained in:
parent
599429ec93
commit
f59a56e4fc
|
@ -46,7 +46,7 @@ enum AOperator
|
||||||
/**
|
/**
|
||||||
* @ingroup config
|
* @ingroup config
|
||||||
*/
|
*/
|
||||||
class AExpression : public Object
|
class I2_CONFIG_API AExpression : public Object
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DECLARE_PTR_TYPEDEFS(AExpression);
|
DECLARE_PTR_TYPEDEFS(AExpression);
|
||||||
|
|
|
@ -32,7 +32,7 @@ AValue::AValue(const AExpression::Ptr& expr)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
AValue::AValue(AValueType type, const Value& value)
|
AValue::AValue(AValueType type, const Value& value)
|
||||||
: m_Type(type), m_Value(value), m_Expression(NULL)
|
: m_Type(type), m_Value(value)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
Value AValue::Evaluate(const Object::Ptr& thisRef) const
|
Value AValue::Evaluate(const Object::Ptr& thisRef) const
|
||||||
|
|
|
@ -43,7 +43,7 @@ class AExpression;
|
||||||
/**
|
/**
|
||||||
* @ingroup config
|
* @ingroup config
|
||||||
*/
|
*/
|
||||||
class AValue
|
class I2_CONFIG_API AValue
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
AValue(void);
|
AValue(void);
|
||||||
|
|
Loading…
Reference in New Issue