Remove `using std::make_unique`
authorPhil Willoughby <philwill@fb.com>
Wed, 16 Mar 2016 14:22:26 +0000 (07:22 -0700)
committerFacebook Github Bot 2 <facebook-github-bot-2-bot@fb.com>
Wed, 16 Mar 2016 14:35:50 +0000 (07:35 -0700)
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

index ee09c7a48c74d2cfe9a185b5110979b9a8dcb6e2..7cd2452fbd7b4ad335b7de8cdb97d6e2a58ddd38 100644 (file)
@@ -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;