Commit e4981431 by Dominic Hamon

fix warning on loss of integer precision

parent 51c23a91
...@@ -130,7 +130,7 @@ struct ThreadStats { ...@@ -130,7 +130,7 @@ struct ThreadStats {
ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {} ThreadStats() : bytes_processed(0), items_processed(0), complexity_n(0) {}
int64_t bytes_processed; int64_t bytes_processed;
int64_t items_processed; int64_t items_processed;
size_t complexity_n; int complexity_n;
}; };
// Timer management class // Timer management class
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment