fixed overshadow

This commit is contained in:
Ismael 2016-05-24 20:26:21 +02:00
parent e5cf020d97
commit 5e10e120db
2 changed files with 2 additions and 2 deletions

View file

@ -321,7 +321,7 @@ public:
}
BENCHMARK_ALWAYS_INLINE
size_t complexity_n() {
size_t complexity_length_n() {
return complexity_n_;
}

View file

@ -694,7 +694,7 @@ void RunInThread(const benchmark::internal::Benchmark::Instance* b,
MutexLock l(GetBenchmarkLock());
total->bytes_processed += st.bytes_processed();
total->items_processed += st.items_processed();
total->complexity_n += st.complexity_n();
total->complexity_n += st.complexity_length_n();
}
timer_manager->Finalize();