| Index: test/cctest/test-spaces.cc
|
| diff --git a/test/cctest/test-spaces.cc b/test/cctest/test-spaces.cc
|
| index 6c3591a855abe4cb3f50c7e550c7276e85ffab85..d8a4b02b330b44b0c2ed0c7f95b937ad34bec41a 100644
|
| --- a/test/cctest/test-spaces.cc
|
| +++ b/test/cctest/test-spaces.cc
|
| @@ -804,7 +804,7 @@ class Observer : public InlineAllocationObserver {
|
| explicit Observer(intptr_t step_size)
|
| : InlineAllocationObserver(step_size), count_(0) {}
|
|
|
| - virtual void Step(int bytes_allocated) { count_++; }
|
| + void Step(int bytes_allocated, Address, size_t) override { count_++; }
|
|
|
| int count() const { return count_; }
|
|
|
|
|