8365316: Remove unnecessary default arg value in gcVMOperations

Reviewed-by: tschatzl
This commit is contained in:
Albert Mingkun Yang 2025-08-12 11:58:37 +00:00
parent 95b7a8b3e3
commit 19a76a45e9

View file

@ -117,8 +117,8 @@ class VM_GC_Operation: public VM_Heap_Sync_Operation {
public:
VM_GC_Operation(uint gc_count_before,
GCCause::Cause _cause,
uint full_gc_count_before = 0,
bool full = false) : VM_Heap_Sync_Operation() {
uint full_gc_count_before,
bool full) : VM_Heap_Sync_Operation() {
_full = full;
_prologue_succeeded = false;
_gc_count_before = gc_count_before;
@ -147,8 +147,8 @@ class VM_GC_Service_Operation : public VM_GC_Operation {
public:
VM_GC_Service_Operation(uint gc_count_before,
GCCause::Cause _cause,
uint full_gc_count_before = 0,
bool full = false) :
uint full_gc_count_before,
bool full) :
VM_GC_Operation(gc_count_before, _cause, full_gc_count_before, full) {}
};