1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-18 17:10:55 +02:00

Can use std::function on Mac too

This commit is contained in:
Paul Licameli 2017-10-29 13:36:38 -04:00
parent 80d7f2426f
commit 86b9c5c5fe

View File

@ -31,7 +31,11 @@ using std::isinf;
// To define make_shared
#include <tr1/memory>
// To define function
#include <tr1/functional>
namespace std {
using std::tr1::function;
using std::tr1::shared_ptr;
using std::tr1::weak_ptr;
using std::tr1::static_pointer_cast;