From f948956bf789926e8a1f0456d93c8786d78eb2d7 Mon Sep 17 00:00:00 2001 From: levlam Date: Thu, 27 Sep 2018 04:19:03 +0300 Subject: Use td::unique_ptr instead of std::unique_ptr whenever possible. GitOrigin-RevId: 424beb72dc62efdefdbffb75f1036ba9417f84cb --- benchmark/wget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'benchmark/wget.cpp') diff --git a/benchmark/wget.cpp b/benchmark/wget.cpp index 850c5b641..0103d7f11 100644 --- a/benchmark/wget.cpp +++ b/benchmark/wget.cpp @@ -25,7 +25,7 @@ int main(int argc, char *argv[]) { auto timeout = 10; auto ttl = 3; auto prefer_ipv6 = (argc > 2 && std::string(argv[2]) == "-6"); - auto scheduler = std::make_unique(); + auto scheduler = td::make_unique(); scheduler->init(0); scheduler ->create_actor_unsafe(0, "Client", td::PromiseCreator::lambda([](td::Result res) { -- cgit v1.2.3