mirror of https://github.com/google/benchmark.git
adapt complexity_n to leastsq inteface
This commit is contained in:
parent
64d72ee7b2
commit
a24ef95e11
|
@ -70,7 +70,7 @@ class BenchmarkReporter {
|
|||
|
||||
// Keep track of arguments to compute asymptotic complexity
|
||||
BigO complexity;
|
||||
size_t complexity_n;
|
||||
int complexity_n;
|
||||
|
||||
// Inform print function whether the current run is a complexity report
|
||||
bool report_big_o;
|
||||
|
|
|
@ -119,7 +119,7 @@ struct ThreadStats {
|
|||
ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {}
|
||||
int64_t bytes_processed;
|
||||
int64_t items_processed;
|
||||
size_t complexity_n;
|
||||
int complexity_n;
|
||||
};
|
||||
|
||||
// Timer management class
|
||||
|
|
Loading…
Reference in New Issue