Fix compilation on FreeBSD.

This commit is contained in:
Alex Dupre
2013-06-26 12:02:22 +02:00
parent 3556ae5325
commit d82a68dbbb
2 changed files with 3 additions and 3 deletions

View File

@@ -280,11 +280,11 @@
# include <tr1/functional>
# endif
#elif BEAST_LINUX
#elif BEAST_LINUX || BEAST_BSD
# include <tr1/functional>
#else
# error Unnkown platform!
# error Unknown platform!
#endif

View File

@@ -71,7 +71,7 @@ using std::tr1::placeholders::_1;
using std::tr1::placeholders::_2;
#endif
#elif BEAST_LINUX
#elif BEAST_LINUX || BEAST_BSD
using std::tr1::bind;
using std::tr1::placeholders::_1;
using std::tr1::placeholders::_2;