diff options
author | Brian Carlstrom <bdc@google.com> | 2013-07-17 23:40:20 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2013-07-18 00:12:43 -0700 |
commit | 0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c (patch) | |
tree | 525a0f99f9381156367c988133b5d51d5dfef6f7 /runtime/base/histogram-inl.h | |
parent | f69863b3039fc621ff4250e262d2a024d5e79ec8 (diff) | |
download | art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.tar.gz art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.tar.bz2 art-0cd7ec2dcd8d7ba30bf3ca420b40dac52849876c.zip |
Fix cpplint whitespace/blank_line issues
Change-Id: Ice937e95e23dd622c17054551d4ae4cebd0ef8a2
Diffstat (limited to 'runtime/base/histogram-inl.h')
-rw-r--r-- | runtime/base/histogram-inl.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/base/histogram-inl.h b/runtime/base/histogram-inl.h index bbca60308..d572cf9cb 100644 --- a/runtime/base/histogram-inl.h +++ b/runtime/base/histogram-inl.h @@ -212,7 +212,6 @@ inline double Histogram<Value>::Percentile(double per) const { DCHECK_GT(cumulative_perc_.size(), 0ull); size_t idx, upper_idx = 0, lower_idx = 0; for (idx = 0; idx < cumulative_perc_.size(); idx++) { - if (per <= cumulative_perc_[idx]) { upper_idx = idx; break; |