Roll back 7 commits

This commit is contained in:
Vinnie Falco
2013-06-28 11:48:02 -07:00
parent ab57495e29
commit aa66af151a
2 changed files with 4 additions and 68 deletions

View File

@@ -20,17 +20,7 @@
#ifndef BEAST_BIND_BEASTHEADER
#define BEAST_BIND_BEASTHEADER
// VFALCO TODO Rename this file to beast_Functional.h
/* Brings functional support into our namespace, based on environment.
Notes on bind
Difference between boost::bind and std::bind
http://stackoverflow.com/questions/10555566/is-there-any-difference-between-c11-stdbind-and-boostbind
Resolving conflict between boost::shared_ptr and std::shared_ptr
http://stackoverflow.com/questions/4682343/how-to-resolve-conflict-between-boostshared-ptr-and-using-stdshared-ptr
/* Brings functional support into our namespace, based on environment.
*/
#ifndef BEAST_BIND_PLACEHOLDERS_N
@@ -58,7 +48,6 @@
#if BEAST_BIND_USES_STD
using std::ref;
using std::cref;
using std::bind;
using std::function;
@@ -147,7 +136,6 @@ using std::placeholders::_20;
#elif BEAST_BIND_USES_TR1
using std::tr1::ref;
using std::tr1::cref;
using std::tr1::bind;
using std::tr1::function;
@@ -236,7 +224,6 @@ using std::tr1::placeholders::_20;
#elif BEAST_BIND_USES_BOOST
using boost::ref;
using boost::cref;
using boost::bind;
using boost::function;