Skip to content

v0.2.55..v0.2.56 changeset AttributeValueCriterion.h

Garret Voltz edited this page Aug 14, 2020 · 3 revisions
diff --git a/hoot-core/src/main/cpp/hoot/core/criterion/AttributeValueCriterion.h b/hoot-core/src/main/cpp/hoot/core/criterion/AttributeValueCriterion.h
index 40aa9c3..493ccc3 100644
--- a/hoot-core/src/main/cpp/hoot/core/criterion/AttributeValueCriterion.h
+++ b/hoot-core/src/main/cpp/hoot/core/criterion/AttributeValueCriterion.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef ATTRIBUTE_VALUE_CRITERION_H
 #define ATTRIBUTE_VALUE_CRITERION_H
@@ -41,8 +41,6 @@ class AttributeValueCriterion : public ElementCriterion, public Configurable
 {
 public:
 
-  static int logWarnCount;
-
   static std::string className() { return "hoot::AttributeValueCriterion"; }
 
   AttributeValueCriterion();
@@ -52,6 +50,7 @@ public:
   AttributeValueCriterion(const ElementAttributeType& attributeType,
                           const double comparisonVal,
                           const NumericComparisonType& comparisonType);
+  virtual ~AttributeValueCriterion() = default;
 
   /**
    * @see ElementCriterion
@@ -75,6 +74,8 @@ public:
 
 private:
 
+  static int logWarnCount;
+
   // attribute to examine
   ElementAttributeType _attributeType;
   // attribute value being compared
Clone this wiki locally