Commit d0df7ef2 by Eric Fiselier

cleanup whitespace and includes

parent a3308c6d
......@@ -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) {
......
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