mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +08:00
Fix missing override keyword
This commit is contained in:
committed by
Klaus Basan
parent
c13121edbd
commit
4387c3b433
@@ -30,7 +30,7 @@ namespace BlackMisc
|
||||
//! Linear interpolator, calculation inbetween positions
|
||||
class BLACKMISC_EXPORT CInterpolatorLinear : public CInterpolator<CInterpolatorLinear>
|
||||
{
|
||||
virtual void anchor();
|
||||
virtual void anchor() override;
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace BlackMisc
|
||||
//! Cubic spline interpolator
|
||||
class BLACKMISC_EXPORT CInterpolatorSpline : public CInterpolator<CInterpolatorSpline>
|
||||
{
|
||||
virtual void anchor();
|
||||
virtual void anchor() override;
|
||||
|
||||
public:
|
||||
//! Constructor
|
||||
|
||||
Reference in New Issue
Block a user