mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-28 03:34:17 +01:00
Fixing an unused-variable warning in microdump_writer.cc
BUG=https://bugs.chromium.org/p/google-breakpad/issues/detail?id=699 R=mark@chromium.org, primiano@chromium.org Review URL: https://codereview.chromium.org/2006333002 .
This commit is contained in:
parent
f25a411200
commit
79901bb99d
@ -504,7 +504,6 @@ class MicrodumpWriter {
|
|||||||
|
|
||||||
if (hole_hi > hole_lo) {
|
if (hole_hi > hole_lo) {
|
||||||
size_t hole_sz = hole_hi - hole_lo;
|
size_t hole_sz = hole_hi - hole_lo;
|
||||||
int log2_hole_sz = Log2Floor(hole_sz);
|
|
||||||
hole_sum += hole_sz;
|
hole_sum += hole_sz;
|
||||||
hole_max = std::max(hole_sz, hole_max);
|
hole_max = std::max(hole_sz, hole_max);
|
||||||
++hole_cnt;
|
++hole_cnt;
|
||||||
|
Loading…
Reference in New Issue
Block a user