Commit fed5dff0 authored by Phil Willoughby's avatar Phil Willoughby Committed by Facebook Github Bot 2

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
parent 2eba4703
...@@ -40,7 +40,6 @@ using std::chrono::steady_clock; ...@@ -40,7 +40,6 @@ using std::chrono::steady_clock;
using std::chrono::seconds; using std::chrono::seconds;
using std::chrono::milliseconds; using std::chrono::milliseconds;
using std::string; using std::string;
using std::make_unique;
using std::unique_ptr; using std::unique_ptr;
using std::vector; using std::vector;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment