|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2020, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -155,15 +155,15 @@ class JVMTypedFlagLimit : public JVMFlagLimit {
|
155 | 155 | // dummy - no range or constraint. This object will not be emitted into the .o file
|
156 | 156 | // because we declare it as "const" but has no reference to it.
|
157 | 157 | constexpr JVMTypedFlagLimit(int type_enum) :
|
158 |
| - JVMFlagLimit(0, 0, JVMFlagConstraintPhase::AtParse, 0), _min(0), _max(0) {} |
| 158 | + JVMFlagLimit(0, 0, JVMFlagConstraintPhase::AtParse, 0), _min(), _max() {} |
159 | 159 |
|
160 | 160 | // range only
|
161 | 161 | constexpr JVMTypedFlagLimit(int type_enum, T min, T max) :
|
162 | 162 | JVMFlagLimit(type_enum, 0, JVMFlagConstraintPhase::AtParse, HAS_RANGE), _min(min), _max(max) {}
|
163 | 163 |
|
164 | 164 | // constraint only
|
165 | 165 | constexpr JVMTypedFlagLimit(int type_enum, ConstraintMarker dummy2, short func, JVMFlagConstraintPhase phase) :
|
166 |
| - JVMFlagLimit(type_enum, func, phase, HAS_CONSTRAINT), _min(0), _max(0) {} |
| 166 | + JVMFlagLimit(type_enum, func, phase, HAS_CONSTRAINT), _min(), _max() {} |
167 | 167 |
|
168 | 168 | // range and constraint
|
169 | 169 | constexpr JVMTypedFlagLimit(int type_enum, T min, T max, ConstraintMarker dummy2, short func, JVMFlagConstraintPhase phase) :
|
|
0 commit comments