Skip to content

v0.2.55..v0.2.56 changeset HighwayTagOnlyMerger.h

Garret Voltz edited this page Aug 14, 2020 · 3 revisions
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayTagOnlyMerger.h b/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayTagOnlyMerger.h
index 7b8100f..fa518e8 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayTagOnlyMerger.h
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/highway/HighwayTagOnlyMerger.h
@@ -48,7 +48,7 @@ public:
 
   static std::string className() { return "hoot::HighwayTagOnlyMerger"; }
 
-  HighwayTagOnlyMerger();
+  HighwayTagOnlyMerger() = default;
   HighwayTagOnlyMerger(const std::set<std::pair<ElementId, ElementId>>& pairs,
                        const std::shared_ptr<SublineStringMatcher>& sublineMatcher);
   // This is definitely not ideal to be passing a Network Conflation merger in here like this to
@@ -58,7 +58,7 @@ public:
     const std::set<std::pair<ElementId, ElementId>>& pairs,
     std::shared_ptr<PartialNetworkMerger> networkMerger);
 
-  ~HighwayTagOnlyMerger();
+  virtual ~HighwayTagOnlyMerger() = default;
 
   virtual QString getDescription() const
   { return "Merges road tags only with minimal geometry exceptions"; }
Clone this wiki locally