mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 20:22:13 +01:00
make_movable -> std::make_unique
This commit is contained in:
@@ -36,7 +36,7 @@ threshold of difference in two selected tracks
|
||||
#include "CommandContext.h"
|
||||
|
||||
extern void RegisterCompareAudio( Registrar & R){
|
||||
R.AddCommand( make_movable<CompareAudioCommand>() );
|
||||
R.AddCommand( std::make_unique<CompareAudioCommand>() );
|
||||
// std::unique_ptr<CommandOutputTargets> &&target
|
||||
// return std::make_shared<CompareAudioCommand>(*this, std::move(target));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user