changed complexity_n from int to size_t

This commit is contained in:
Ismael 2016-05-24 20:35:39 +02:00
parent 5e10e120db
commit 64d72ee7b2

View file

@ -70,7 +70,7 @@ class BenchmarkReporter {
// Keep track of arguments to compute asymptotic complexity
BigO complexity;
int complexity_n;
size_t complexity_n;
// Inform print function whether the current run is a complexity report
bool report_big_o;