From 8973b3114d1f74fcf1e54d3fe373f74ec19e1975 Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Mon, 20 Jul 2015 12:26:32 -0700 Subject: [PATCH] Fix a namespace nit in folly/futures/Future.cpp. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Summary: [Folly] Fix a namespace nit in folly/futures/Future.cpp. As soon as someone introduces a namespace `folly::futures::detail` this will blow up. Fix it so it won't blow up when that happens. Reviewed By: @​hannesr Differential Revision: D2258799 --- folly/futures/Future.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/futures/Future.cpp b/folly/futures/Future.cpp index e4265ebc..501322a1 100644 --- a/folly/futures/Future.cpp +++ b/folly/futures/Future.cpp @@ -33,7 +33,7 @@ namespace folly { namespace futures { Future sleep(Duration dur, Timekeeper* tk) { if (LIKELY(!tk)) { - tk = detail::getTimekeeperSingleton(); + tk = folly::detail::getTimekeeperSingleton(); } return tk->after(dur); } -- 2.34.1