From: Yedidya Feldblum Date: Mon, 20 Jul 2015 19:26:32 +0000 (-0700) Subject: Fix a namespace nit in folly/futures/Future.cpp. X-Git-Tag: v0.52.0~21 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8973b3114d1f74fcf1e54d3fe373f74ec19e1975;p=folly.git Fix a namespace nit in folly/futures/Future.cpp. 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 --- 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); }