mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 08:09:41 +02:00
virtual dtors should be non-inline
This commit is contained in:
parent
87cae3f0c8
commit
e4260e2e95
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user