Skip to content

Commit

Permalink
Mark all appropriate methods in class as override
Browse files Browse the repository at this point in the history
  • Loading branch information
earthling-amzn committed Dec 15, 2023
1 parent 93d0f4e commit d1a4a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/share/gc/shenandoah/shenandoahVMOperations.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class VM_ShenandoahOperation : public VM_Operation {
uint _gc_id;
public:
VM_ShenandoahOperation() : _gc_id(GCId::current()) {};
virtual bool skip_thread_oop_barriers() const { return true; }
bool skip_thread_oop_barriers() const override { return true; }
bool doit_prologue() override;
void doit_epilogue() override;
};
Expand Down

0 comments on commit d1a4a69

Please sign in to comment.