cleanup whitespace and includes

This commit is contained in:
Eric Fiselier 2015-03-26 14:30:16 -04:00
parent a3308c6d86
commit d0df7ef2de
2 changed files with 0 additions and 4 deletions

View File

@ -15,7 +15,6 @@
#include "walltime.h"
#include <sys/time.h>
#include <iostream>
#include <cstdio>
#include <cstdint>

View File

@ -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) {