1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 08:34:34 +02:00

Add std::(tr::)bind to TR1 wrapper

This commit is contained in:
Uwe L. Korn
2014-08-18 14:27:47 +01:00
parent 79eab29e34
commit b288b3eebf

View File

@@ -22,9 +22,11 @@
#if defined(_WEBSOCKETPP_CPP11_STL_) || defined(CXX_STD_FUNCTIONAL)
#include <functional>
using std::function;
using std::bind;
#else
#include <tr1/functional>
using std::tr1::function;
using std::tr1::bind;
#endif
#endif