James Crook
2017-07-09 14:04:07 UTC
Paul, your use of default in commit
https://github.com/audacity/audacity/commi/7eafbf6dd61f08bf38d0c25e5b2c56ae7b829a15
breaks the build on MSVC2013.
c:\opensourcegit\audacity\src\tracks\ui\timeshifthandle.h(54): error
C2610: 'TimeShiftHandle &TimeShiftHandle::operator =(TimeShiftHandle
&&)' : is not a special member function which can be defaulted
This line (and similar lines for other handles) causes the problem:
TimeShiftHandle &operator=(TimeShiftHandle&&) = default;
Please fix.
--James.
https://github.com/audacity/audacity/commi/7eafbf6dd61f08bf38d0c25e5b2c56ae7b829a15
breaks the build on MSVC2013.
c:\opensourcegit\audacity\src\tracks\ui\timeshifthandle.h(54): error
C2610: 'TimeShiftHandle &TimeShiftHandle::operator =(TimeShiftHandle
&&)' : is not a special member function which can be defaulted
This line (and similar lines for other handles) causes the problem:
TimeShiftHandle &operator=(TimeShiftHandle&&) = default;
Please fix.
--James.