Commit d0df7ef2 by Eric Fiselier

cleanup whitespace and includes

parent a3308c6d
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
#include "walltime.h" #include "walltime.h"
#include <sys/time.h> #include <sys/time.h>
#include <iostream>
#include <cstdio> #include <cstdio>
#include <cstdint> #include <cstdint>
......
...@@ -68,7 +68,6 @@ void BM_pause_during(benchmark::State& state) { ...@@ -68,7 +68,6 @@ void BM_pause_during(benchmark::State& state) {
BASIC_BENCHMARK_TEST(BM_pause_during); BASIC_BENCHMARK_TEST(BM_pause_during);
BASIC_BENCHMARK_TEST(BM_pause_during)->ThreadPerCpu(); BASIC_BENCHMARK_TEST(BM_pause_during)->ThreadPerCpu();
void BM_pause_during_realtime(benchmark::State& state) { void BM_pause_during_realtime(benchmark::State& state) {
state.UseRealTime(); state.UseRealTime();
while(state.KeepRunning()) { while(state.KeepRunning()) {
...@@ -79,8 +78,6 @@ void BM_pause_during_realtime(benchmark::State& state) { ...@@ -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);
BASIC_BENCHMARK_TEST(BM_pause_during_realtime)->ThreadPerCpu(); BASIC_BENCHMARK_TEST(BM_pause_during_realtime)->ThreadPerCpu();
void BM_spin_pause_after(benchmark::State& state) { void BM_spin_pause_after(benchmark::State& state) {
while(state.KeepRunning()) { while(state.KeepRunning()) {
for (int i = 0; i < state.range_x(); ++i) { 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