Skip to content

v0.2.49..v0.2.50 changeset OptimalConstrainedMatches.cpp

Garret Voltz edited this page Nov 6, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/matching/OptimalConstrainedMatches.cpp b/hoot-core/src/main/cpp/hoot/core/conflate/matching/OptimalConstrainedMatches.cpp
index 19845f8..b175415 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/matching/OptimalConstrainedMatches.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/matching/OptimalConstrainedMatches.cpp
@@ -43,10 +43,10 @@ OptimalConstrainedMatches::OptimalConstrainedMatches(const ConstOsmMapPtr& map)
   _timeLimit = -1;
 }
 
-vector<const Match*> OptimalConstrainedMatches::calculateSubset()
+std::vector<ConstMatchPtr> OptimalConstrainedMatches::calculateSubset()
 {
   _score = -1;
-  vector<const Match*> result;
+  vector<ConstMatchPtr> result;
 
   if (_matches.size() == 0)
   {
Clone this wiki locally