Skip to content

Commit

Permalink
some minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ksiminski committed Sep 28, 2023
1 parent dee714e commit 8cab239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/metrics/metric-euclidean.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ namespace ksi
/** Just calculates a distance :-) */
virtual double calculateDistance(const std::vector<double> & l, const std::vector<double> & p) const override;
/** method for cloning an object */
virtual std::shared_ptr<metric> clone () const;
std::shared_ptr< ksi::metric > clone();

/** @return abbreviation of the metric
@date 2021-02-01 */
virtual std::string getAbbreviation() const;
virtual std::string getAbbreviation() const override;
};
}

Expand Down

0 comments on commit 8cab239

Please sign in to comment.