Fix a namespace nit in folly/futures/Future.cpp.
authorYedidya Feldblum <yfeldblum@fb.com>
Mon, 20 Jul 2015 19:26:32 +0000 (12:26 -0700)
committerfacebook-github-bot-4 <folly-bot@fb.com>
Tue, 21 Jul 2015 23:52:32 +0000 (16:52 -0700)
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

index e4265ebc55016f46b52c6c8cfe48d004c3709f4e..501322a154a2d6d69b6d1945ee41a48842c5ca87 100644 (file)
@@ -33,7 +33,7 @@ namespace folly { namespace futures {
 
 Future<Unit> sleep(Duration dur, Timekeeper* tk) {
   if (LIKELY(!tk)) {
-    tk = detail::getTimekeeperSingleton();
+    tk = folly::detail::getTimekeeperSingleton();
   }
   return tk->after(dur);
 }