mirror of
https://github.com/google/benchmark.git
synced 2025-01-30 05:40:15 +08:00
cleanup whitespace and includes
This commit is contained in:
parent
a3308c6d86
commit
d0df7ef2de
@ -15,7 +15,6 @@
|
||||
#include "walltime.h"
|
||||
|
||||
#include <sys/time.h>
|
||||
#include <iostream>
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdint>
|
||||
|
@ -68,7 +68,6 @@ void BM_pause_during(benchmark::State& state) {
|
||||
BASIC_BENCHMARK_TEST(BM_pause_during);
|
||||
BASIC_BENCHMARK_TEST(BM_pause_during)->ThreadPerCpu();
|
||||
|
||||
|
||||
void BM_pause_during_realtime(benchmark::State& state) {
|
||||
state.UseRealTime();
|
||||
while(state.KeepRunning()) {
|
||||
@ -79,8 +78,6 @@ void BM_pause_during_realtime(benchmark::State& state) {
|
||||
BASIC_BENCHMARK_TEST(BM_pause_during_realtime);
|
||||
BASIC_BENCHMARK_TEST(BM_pause_during_realtime)->ThreadPerCpu();
|
||||
|
||||
|
||||
|
||||
void BM_spin_pause_after(benchmark::State& state) {
|
||||
while(state.KeepRunning()) {
|
||||
for (int i = 0; i < state.range_x(); ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user