#include <algorithm>
#include <cstdint>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <tuple>
#include <vector>
#include "benchmark/benchmark.h"
#include "check.h"
#include "colorprint.h"
#include "commandlineflags.h"
#include "complexity.h"
#include "counter.h"
#include "internal_macros.h"
#include "string_util.h"
#include "timers.h"
namespace benchmark {
BENCHMARK_EXPORT
bool ConsoleReporter::ReportContext(const Context& context) { … }
BENCHMARK_EXPORT
void ConsoleReporter::PrintHeader(const Run& run) { … }
BENCHMARK_EXPORT
void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) { … }
static void IgnoreColorPrint(std::ostream& out, LogColor, const char* fmt,
...) { … }
static std::string FormatTime(double time) { … }
BENCHMARK_EXPORT
void ConsoleReporter::PrintRunData(const Run& result) { … }
}