mirror of
https://github.com/google/benchmark.git
synced 2024-11-26 07:32:19 +00:00
fixed overshadow
This commit is contained in:
parent
e5cf020d97
commit
5e10e120db
|
@ -321,7 +321,7 @@ public:
|
|||
}
|
||||
|
||||
BENCHMARK_ALWAYS_INLINE
|
||||
size_t complexity_n() {
|
||||
size_t complexity_length_n() {
|
||||
return complexity_n_;
|
||||
}
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue