From b288b3eebf8c9766a1577e0870c9c2df94a5b775 Mon Sep 17 00:00:00 2001 From: "Uwe L. Korn" Date: Mon, 18 Aug 2014 14:27:47 +0100 Subject: [PATCH] Add std::(tr::)bind to TR1 wrapper --- src/libtomahawk/utils/tr1-functional.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libtomahawk/utils/tr1-functional.h b/src/libtomahawk/utils/tr1-functional.h index 2a1d5aa14..69fc378d3 100644 --- a/src/libtomahawk/utils/tr1-functional.h +++ b/src/libtomahawk/utils/tr1-functional.h @@ -22,9 +22,11 @@ #if defined(_WEBSOCKETPP_CPP11_STL_) || defined(CXX_STD_FUNCTIONAL) #include using std::function; +using std::bind; #else #include using std::tr1::function; +using std::tr1::bind; #endif #endif