mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-02 14:17:07 +01:00
movable_ptr(_with_deleter) -> std::unique_ptr
This commit is contained in:
@@ -72,7 +72,7 @@ struct UndoState {
|
||||
SelectedRegion selectedRegion; // by value
|
||||
};
|
||||
|
||||
using UndoStack = std::vector <movable_ptr<UndoStackElem>>;
|
||||
using UndoStack = std::vector <std::unique_ptr<UndoStackElem>>;
|
||||
|
||||
using SpaceArray = std::vector <unsigned long long> ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user