]> granicus.if.org Git - icinga2/commitdiff
Build fix.
authorGunnar Beutner <gunnar@beutner.name>
Sun, 20 Oct 2013 13:20:54 +0000 (15:20 +0200)
committerGunnar Beutner <gunnar@beutner.name>
Sun, 20 Oct 2013 13:20:54 +0000 (15:20 +0200)
lib/config/aexpression.h
lib/config/avalue.cpp
lib/config/avalue.h

index 3da667651b3f43e61ca0608bfc83f5b64a8f6410..e9382aa2c1df39b514ef0598dd444571edc9f9a9 100644 (file)
@@ -46,7 +46,7 @@ enum AOperator
 /**
  * @ingroup config
  */
-class AExpression : public Object
+class I2_CONFIG_API AExpression : public Object
 {
 public:
        DECLARE_PTR_TYPEDEFS(AExpression);
index 8b792e0c7df330aed6ad27a97ae15d07e2606364..96aa4931959b70063817389399fe04c4d541d830 100644 (file)
@@ -32,7 +32,7 @@ AValue::AValue(const AExpression::Ptr& expr)
 { }
 
 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
index 107940025079e98b81976c3ab2730de5e1e4f73e..132da5b93c8700752d7093396d1b9c075582db3d 100644 (file)
@@ -43,7 +43,7 @@ class AExpression;
 /**
  * @ingroup config
  */
-class AValue
+class I2_CONFIG_API AValue
 {
 public:
        AValue(void);