diff --git a/include/vf/modules/vf_core/functor/vf_Bind.h b/include/vf/modules/vf_core/functor/vf_Bind.h index 5aa5ee64..a3f7c88a 100644 --- a/include/vf/modules/vf_core/functor/vf_Bind.h +++ b/include/vf/modules/vf_core/functor/vf_Bind.h @@ -27,4 +27,10 @@ using std::bind; using std::placeholders::_1; #endif +#if defined JUCE_IOS || defined JUCE_MAC +using std::tr1::bind; +using std::tr1::function; +using namespace std::tr1::placeholders; +#endif + #endif diff --git a/include/vf/modules/vf_core/vf_core.h b/include/vf/modules/vf_core/vf_core.h index 3532956d..4f4933fc 100644 --- a/include/vf/modules/vf_core/vf_core.h +++ b/include/vf/modules/vf_core/vf_core.h @@ -166,6 +166,11 @@ using juce::uint8; #if JUCE_MSVC #include +#include +#endif + +#if defined JUCE_IOS || defined JUCE_MAC +#include #endif #include @@ -174,7 +179,6 @@ using juce::uint8; #include #include #include -#include #include #include #include