Commit 6df14aee by Dominic Hamon

Merge pull request #3 from sochka/patch-1

Fix int64_t_t typo in README code example
parents 7b0fa3e1 a2781521
...@@ -49,7 +49,7 @@ of memcpy() calls of different lengths: ...@@ -49,7 +49,7 @@ of memcpy() calls of different lengths:
while (state.KeepRunning()) { while (state.KeepRunning()) {
memcpy(dst, src, state.range_x()); memcpy(dst, src, state.range_x());
benchmark::SetBenchmarkBytesProcessed( benchmark::SetBenchmarkBytesProcessed(
int64_t_t(state.iterations) * int64(state.range_x())); int64_t(state.iterations) * int64_t(state.range_x()));
delete[] src; delete[] src;
delete[] dst; delete[] dst;
} }
......
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