Commit 5b5359fe authored by Shai Szulanski's avatar Shai Szulanski Committed by Facebook GitHub Bot

fix clang-format nits

Reviewed By: yfeldblum

Differential Revision: D22393040

fbshipit-source-id: 920a7dfbf1d4334aecb475add96d3799c89aa211
parent fc6f6e43
...@@ -65,7 +65,9 @@ timed_wait(Awaitable awaitable, Duration duration) { ...@@ -65,7 +65,9 @@ timed_wait(Awaitable awaitable, Duration duration) {
if (!result.hasValue() && !result.hasException()) { if (!result.hasValue() && !result.hasException()) {
co_return folly::none; co_return folly::none;
} }
// clang-format off
co_return *result; co_return *result;
// clang-format on
} }
} // namespace coro } // namespace coro
......
...@@ -48,7 +48,7 @@ int main(int argc, char** argv) { ...@@ -48,7 +48,7 @@ int main(int argc, char** argv) {
/* /*
* Output: * Output:
============================================================================ ============================================================================
folly/experimental/test/AtomicReadMostlyMainPtrBenchmark.cpprelative time/iter iters/s AtomicReadMostlyMainPtrBenchmark.cpp relative time/iter iters/s
============================================================================ ============================================================================
SingleThreadedLoads 14.36ns 69.65M SingleThreadedLoads 14.36ns 69.65M
SingleThreadedStores 5.88us 170.15K SingleThreadedStores 5.88us 170.15K
......
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