mirror of https://github.com/google/benchmark.git
fix warning on loss of integer precision
This commit is contained in:
parent
51c23a9115
commit
e498143168
|
@ -130,7 +130,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