mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-30 09:10:13 +01:00
virtual dtors should be non-inline
This commit is contained in:
@@ -21,6 +21,8 @@ Geometric TimeWarper classes
|
||||
#include <wx/string.h>
|
||||
#include <math.h>
|
||||
|
||||
TimeWarper::~TimeWarper() = default;
|
||||
|
||||
double IdentityTimeWarper::Warp(double originalTime) const
|
||||
{
|
||||
return originalTime;
|
||||
|
||||
@@ -61,7 +61,7 @@ of the warped region.
|
||||
class TimeWarper /* not final */
|
||||
{
|
||||
public:
|
||||
virtual ~TimeWarper() { }
|
||||
virtual ~TimeWarper();
|
||||
virtual double Warp(double originalTime) const = 0;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user