Integrated: 8308097: Generational ZGC: Update constructor syntax

Stefan Karlsson stefank at openjdk.org
Tue May 16 16:16:57 UTC 2023


On Mon, 15 May 2023 13:11:42 GMT, Stefan Karlsson <stefank at openjdk.org> wrote:

> 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();
> }
> 
> 
> I propose that make this change.

This pull request has now been integrated.

Changeset: 60ab1358
Author:    Stefan Karlsson <stefank at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/60ab1358da662977e94759eccb95d75a389fd256
Stats:     622 lines in 95 files changed: 8 ins; 17 del; 597 mod

8308097: Generational ZGC: Update constructor syntax

Reviewed-by: eosterlund, aboldtch

-------------

PR: https://git.openjdk.org/jdk/pull/13987


More information about the hotspot-gc-dev mailing list