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)
commitfed5dff0fb6f0a88045fc5a3b089f7740e61328c
tree4d21993b777dc063377d3e5a28b05b99bb535542
parent2eba4703eab79fb094e2bc4ac1f3b57ce9f49f9b
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