From a2781521171e553c6f72c4bb7f628f5d62cf2e7d Mon Sep 17 00:00:00 2001 From: Oleksandr Date: Wed, 15 Jan 2014 23:01:47 +0200 Subject: [PATCH] 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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 89cc5076..525e83dc 100644 --- a/README.md +++ b/README.md @@ -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; }