From fed5dff0fb6f0a88045fc5a3b089f7740e61328c Mon Sep 17 00:00:00 2001 From: Phil Willoughby Date: Wed, 16 Mar 2016 07:22:26 -0700 Subject: [PATCH] Remove `using std::make_unique` Summary: Older compilers do not have have `std::make_unique`. We have `folly::make_unique` which does the same job, and because we already have `using namespace folly` in this file it suffices to erase the `using std::make_unique` line. Reviewed By: eduardosuarez Differential Revision: D3058089 fb-gh-sync-id: a5a5eb54e2bc0ba7ef0880f2b5680a79d1f41d37 shipit-source-id: a5a5eb54e2bc0ba7ef0880f2b5680a79d1f41d37 --- folly/test/MPMCQueueTest.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/folly/test/MPMCQueueTest.cpp b/folly/test/MPMCQueueTest.cpp index ee09c7a4..7cd2452f 100644 --- a/folly/test/MPMCQueueTest.cpp +++ b/folly/test/MPMCQueueTest.cpp @@ -40,7 +40,6 @@ using std::chrono::steady_clock; using std::chrono::seconds; using std::chrono::milliseconds; using std::string; -using std::make_unique; using std::unique_ptr; using std::vector; -- 2.34.1