fix warning on loss of integer precision

This commit is contained in:
Dominic Hamon 2016-06-02 14:37:14 -07:00
parent 51c23a9115
commit e498143168
1 changed files with 1 additions and 1 deletions

View File

@ -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