Skip to content

v0.2.54..v0.2.55 changeset FrechetSublineMatcher.h

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/subline-matching/FrechetSublineMatcher.h b/hoot-core/src/main/cpp/hoot/core/algorithms/subline-matching/FrechetSublineMatcher.h
index dda14e2..6eb873f 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/subline-matching/FrechetSublineMatcher.h
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/subline-matching/FrechetSublineMatcher.h
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 #ifndef FRECHETSUBLINEMATCHER_H
 #define FRECHETSUBLINEMATCHER_H
@@ -43,8 +43,8 @@ public:
   static std::string className() { return "hoot::FrechetSublineMatcher"; }
 
   FrechetSublineMatcher();
-
   virtual ~FrechetSublineMatcher() { }
+
   /**
    * @param maxRelevantDistance This value is set on a per match basis because it tends to vary
    *  based on the CE of the inputs. If set to -1 then the value is derived based on the CE of the
@@ -54,10 +54,8 @@ public:
     const ConstWayPtr& way2, double& score, Meters maxRelevantDistance = -1) const override;
 
   virtual void setMaxRelevantAngle(Radians angle) override { _maxAngle = angle; }
-
-  virtual void setMinSplitSize(Meters /*minSplitSize*/) override { }
-
-  virtual void setHeadingDelta(Meters /*headingDelta*/) override { }
+  virtual void setMinSplitSize(Meters /*minSplitSize*/) override {}
+  virtual void setHeadingDelta(Meters /*headingDelta*/) override {}
 
   virtual void setConfiguration(const Settings &conf);
 
Clone this wiki locally