1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

auto_ptr (deprecated) -> unique_ptr (preferred in C++11)

This commit is contained in:
Paul Licameli
2016-02-05 20:27:09 -05:00
parent 9019df832f
commit daa7617e88
9 changed files with 16 additions and 16 deletions

View File

@@ -164,7 +164,7 @@ class AButton: public wxWindow {
wxRect mFocusRect;
bool mForceFocusRect;
std::auto_ptr<Listener> mListener;
std::unique_ptr<Listener> mListener;
public: