We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d670c1 commit e5736d4Copy full SHA for e5736d4
src/test.cpp
@@ -273,7 +273,7 @@ void turbobenchmark64(vector<uint32_t> &data32) {
273
std::cout << "[turbo benchmark64]" << std::endl;
274
vector<uint64_t> data;
275
276
- for (auto i = data32.begin(); i != data32.end(); ++i)
+ for (vector<uint32_t>::const_iterator i = data32.begin(); i != data32.end(); ++i)
277
data.push_back(*i);
278
279
vector<uint64_t> buffer(data);
0 commit comments