Skip to content

Commit

Permalink
Mark methods overrides
Browse files Browse the repository at this point in the history
Mark methods as overrides to fix compiler warnings.
  • Loading branch information
natelust committed Nov 28, 2018
1 parent cf62dc0 commit 756b0aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/lsst/meas/modelfit/Mixture.h
Original file line number Diff line number Diff line change
Expand Up @@ -365,11 +365,11 @@ class Mixture : public afw::table::io::PersistableFacade<Mixture>, public afw::t

protected:

virtual std::string getPythonModule() const { return "lsst.meas.modelfit"; }
virtual std::string getPythonModule() const override { return "lsst.meas.modelfit"; }

virtual std::string getPersistenceName() const;
virtual std::string getPersistenceName() const override;

virtual void write(OutputArchiveHandle & handle) const;
virtual void write(OutputArchiveHandle & handle) const override;

private:
template <typename A, typename B, typename C>
Expand Down

0 comments on commit 756b0aa

Please sign in to comment.