Skip to content

v0.2.49..v0.2.50 changeset MatchGraph.h

Garret Voltz edited this page Nov 6, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchGraph.h b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchGraph.h
index 80316f0..20505cf 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchGraph.h
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchGraph.h
@@ -28,6 +28,7 @@
 #define MATCHGRAPH_H
 
 // Hoot
+#include <hoot/core/conflate/matching/Match.h>
 #include <hoot/core/conflate/matching/MatchSet.h>
 
 // Standard
@@ -38,7 +39,6 @@
 namespace hoot
 {
 
-class Match;
 class MatchGraphInternal;
 
 typedef std::vector<MatchSet> MatchSetVector;
@@ -84,7 +84,7 @@ public:
 
 private:
 
-  std::vector<const Match*> _matches;
+  std::vector<ConstMatchPtr> _matches;
   bool _checkForConflicts;
   /**
    * An internal data structure to prevent users of the class from recompiling the boost graph
Clone this wiki locally