Commit ecbb51c3 authored by Ng Zhi An's avatar Ng Zhi An Committed by Commit Bot

[clang-tidy] Remove constructor with empty body

This constructor can be default, and since it isn't doing anything,
can be removed.

See
https://chromium.googlesource.com/chromium/src/+/HEAD/styleguide/c++/c++-dos-and-donts.md#prefer-to-use.

Bug: v8:10488
Change-Id: I5da7d78063c57d318f6cec578185bad6f83a1a3b
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2233980
Commit-Queue: Zhi An Ng <zhin@chromium.org>
Reviewed-by: 's avatarAnton Bikineev <bikineev@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68274}
parent 2debc9df
......@@ -2717,8 +2717,6 @@ static inline SlotCallbackResult UpdateStrongSlot(TSlot slot) {
// It does not expect to encounter pointers to dead objects.
class PointersUpdatingVisitor : public ObjectVisitor, public RootVisitor {
public:
PointersUpdatingVisitor() {}
void VisitPointer(HeapObject host, ObjectSlot p) override {
UpdateStrongSlotInternal(p);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment