Generational ZGC: Update constructor syntax

XMLWordPrintable

    • Type: Enhancement
    • Resolution: Fixed
    • Priority: P4
    • 21
    • Affects Version/s: None
    • Component/s: hotspot
    • gc
    • b23

      ZGC's current constructor syntax works well with some editors, but not all. There is a wish to move over from the current syntax:

      ZClass:ZClass() :
          ZSuper(),
          _member0,
          _member1 {
        // Code
        doit();
      }

      to the following syntax:

      ZClass:ZClass()
        : ZSuper(),
          _member0,
          _member1 {
        // Code
        doit();
      }

            Assignee:
            Stefan Karlsson
            Reporter:
            Stefan Karlsson
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: