Merge pull request #3 from sochka/patch-1

Fix int64_t_t typo in README code example
This commit is contained in:
Dominic Hamon 2014-01-15 15:02:01 -08:00
commit 6df14aeed0
1 changed files with 1 additions and 1 deletions

View File

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