Commit 8973b311 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by facebook-github-bot-4

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
parent 8cf17bb5
...@@ -33,7 +33,7 @@ namespace folly { namespace futures { ...@@ -33,7 +33,7 @@ namespace folly { namespace futures {
Future<Unit> sleep(Duration dur, Timekeeper* tk) { Future<Unit> sleep(Duration dur, Timekeeper* tk) {
if (LIKELY(!tk)) { if (LIKELY(!tk)) {
tk = detail::getTimekeeperSingleton(); tk = folly::detail::getTimekeeperSingleton();
} }
return tk->after(dur); return tk->after(dur);
} }
......
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