summaryrefslogtreecommitdiff
path: root/src/mongo/stdx
diff options
context:
space:
mode:
authorBilly Donahue <billy.donahue@mongodb.com>2017-12-14 18:31:59 -0500
committerBilly Donahue <billy.donahue@mongodb.com>2018-01-16 16:59:45 -0500
commita8561f9a3775083eaf17e648850791a2cbd37893 (patch)
treeb8c03bf13d71d1a2aea1206c5153104016219b52 /src/mongo/stdx
parentf2af0ad889f1cfca7a311d53912c5b808500ea77 (diff)
downloadmongo-a8561f9a3775083eaf17e648850791a2cbd37893.tar.gz
SERVER-32070 remove stdx::bind (final patch)
Diffstat (limited to 'src/mongo/stdx')
-rw-r--r--src/mongo/stdx/functional.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/mongo/stdx/functional.h b/src/mongo/stdx/functional.h
index 0921cd22c94..e489c1d4edd 100644
--- a/src/mongo/stdx/functional.h
+++ b/src/mongo/stdx/functional.h
@@ -33,11 +33,9 @@
namespace mongo {
namespace stdx {
-using ::std::bind; // NOLINT
-using ::std::cref; // NOLINT
-using ::std::function; // NOLINT
-using ::std::ref; // NOLINT
-namespace placeholders = ::std::placeholders; // NOLINT
+using ::std::cref; // NOLINT
+using ::std::function; // NOLINT
+using ::std::ref; // NOLINT
} // namespace stdx
} // namespace mongo