Skip to content

Commit

Permalink
Merge cacb02c into 4b9f43e
Browse files Browse the repository at this point in the history
  • Loading branch information
dominichamon committed Jan 15, 2019
2 parents 4b9f43e + cacb02c commit 6d06a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/benchmark/benchmark.h
Expand Up @@ -421,6 +421,7 @@ typedef double(BigOFunc)(int64_t);
// statistics over all the measurements of some type
typedef double(StatisticsFunc)(const std::vector<double>&);

namespace internal {
struct Statistics {
std::string name_;
StatisticsFunc* compute_;
Expand All @@ -429,7 +430,6 @@ struct Statistics {
: name_(name), compute_(compute) {}
};

namespace internal {
struct BenchmarkInstance;
class ThreadTimer;
class ThreadManager;
Expand Down Expand Up @@ -1373,7 +1373,7 @@ class BenchmarkReporter {
int64_t complexity_n;

// what statistics to compute from the measurements
const std::vector<Statistics>* statistics;
const std::vector<internal::Statistics>* statistics;

// Inform print function whether the current run is a complexity report
bool report_big_o;
Expand Down

0 comments on commit 6d06a22

Please sign in to comment.