src/hotspot/share/runtime/flags/jvmFlagRangeList.hpp
branchepsilon-gc-branch
changeset 56625 380796df44a9
parent 56508 f67f588ebf15
parent 50289 0195ee80e530
equal deleted inserted replaced
56597:e472f5150008 56625:380796df44a9
    37  * An example of a range is "min <= flag <= max". Both "min" and "max" must be
    37  * An example of a range is "min <= flag <= max". Both "min" and "max" must be
    38  * constant and can not change. If either "min" or "max" can change,
    38  * constant and can not change. If either "min" or "max" can change,
    39  * then we need to use constraint instead.
    39  * then we need to use constraint instead.
    40  */
    40  */
    41 
    41 
    42 class CommandLineError : public AllStatic {
       
    43 public:
       
    44   static void print(bool verbose, const char* msg, ...);
       
    45 };
       
    46 
       
    47 class JVMFlagRange : public CHeapObj<mtArguments> {
    42 class JVMFlagRange : public CHeapObj<mtArguments> {
    48 private:
    43 private:
    49   const char* _name;
    44   const char* _name;
    50 public:
    45 public:
    51   // the "name" argument must be a string literal
    46   // the "name" argument must be a string literal