1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-23 15:50:05 +02:00

Removing "explicit" keyword until we drop PPC support

We can then added it back since we'll be upgrading to a newer
compiler.
This commit is contained in:
lllucius 2014-10-06 14:23:50 +00:00
parent bdcefb4850
commit 0cfabcf345

View File

@ -28,7 +28,12 @@ public:
, mT1(t1) , mT1(t1)
{ ensureOrdering(); } { ensureOrdering(); }
explicit
// LLL: 2014/10/6
// Removed "explicit" until we drop OSX PPC support and upgrade to a newer
// compiler.
//
// explicit
SelectedRegion(const SelectedRegion &x) SelectedRegion(const SelectedRegion &x)
: mT0(x.mT0) : mT0(x.mT0)
, mT1(x.mT1) , mT1(x.mT1)