mirror of
https://github.com/google/benchmark.git
synced 2025-01-27 20:30:15 +08:00
Fix int64_t_t typo in README code example
Fixes a typo where the first type was written as int64_t_t with suffixing _t twice and the second type misses suffix at all.
This commit is contained in:
parent
7b0fa3e1fa
commit
a278152117
@ -49,7 +49,7 @@ of memcpy() calls of different lengths:
|
||||
while (state.KeepRunning()) {
|
||||
memcpy(dst, src, state.range_x());
|
||||
benchmark::SetBenchmarkBytesProcessed(
|
||||
int64_t_t(state.iterations) * int64(state.range_x()));
|
||||
int64_t(state.iterations) * int64_t(state.range_x()));
|
||||
delete[] src;
|
||||
delete[] dst;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user