Re: [Patch, fortran] PR82205 - parametrized derived types, problems with initialization

2025-08-27 Thread Jerry D
On 8/27/25 3:00 AM, Paul Richard Thomas wrote: This patch corrects the form of PDT constructors so that they are standard conforming: structure-constructor is type-name [ ( type-param-spec-list ) ] ( [ component-spec-list ] ) At present, the type-param-spec-list for PDTs is rolled into the

Re: [Patch, fortran] PR82843 - (PDT) Constructors with PDT components do not work.

2025-08-27 Thread Jerry D
On 8/27/25 3:10 AM, Paul Richard Thomas wrote: This patch corrects errors due to PDT components taking the PDT template as their type in PDT constructors and component references. The latter took a long time to debug because yours truly did not catch on to the basic problem until a light bulb m

[Patch, fortran] PR82843 - (PDT) Constructors with PDT components do not work.

2025-08-27 Thread Paul Richard Thomas
This patch corrects errors due to PDT components taking the PDT template as their type in PDT constructors and component references. The latter took a long time to debug because yours truly did not catch on to the basic problem until a light bulb moment, triggered by an excess of coffee :-) With th

[Patch, fortran] PR82205 - parametrized derived types, problems with initialization

2025-08-27 Thread Paul Richard Thomas
This patch corrects the form of PDT constructors so that they are standard conforming: structure-constructor is type-name [ ( type-param-spec-list ) ] ( [ component-spec-list ] ) At present, the type-param-spec-list for PDTs is rolled into the component-spec-list. The patch separates the type-par