diff options
Diffstat (limited to 'libcxx/utils/google-benchmark/test/options_test.cc')
| -rw-r--r-- | libcxx/utils/google-benchmark/test/options_test.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libcxx/utils/google-benchmark/test/options_test.cc b/libcxx/utils/google-benchmark/test/options_test.cc index 06bc9c2ee08..bedb1cc3ee9 100644 --- a/libcxx/utils/google-benchmark/test/options_test.cc +++ b/libcxx/utils/google-benchmark/test/options_test.cc @@ -12,8 +12,7 @@ void BM_basic_slow(benchmark::State& state) { std::chrono::milliseconds sleep_duration(state.range(0)); while (state.KeepRunning()) { std::this_thread::sleep_for( - std::chrono::duration_cast<std::chrono::nanoseconds>(sleep_duration) - ); + std::chrono::duration_cast<std::chrono::nanoseconds>(sleep_duration)); } } |

