From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cc-smtpout1.netcologne.de (cc-smtpout1.netcologne.de [89.1.8.211]) by sourceware.org (Postfix) with ESMTPS id 58FD7385841F; Wed, 4 Aug 2021 07:05:10 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 58FD7385841F Received: from cc-smtpin1.netcologne.de (cc-smtpin1.netcologne.de [89.1.8.201]) by cc-smtpout1.netcologne.de (Postfix) with ESMTP id A0B16125DB; Wed, 4 Aug 2021 09:05:08 +0200 (CEST) Received: from [IPv6:2001:4dd7:c228:0:7285:c2ff:fe6c:992d] (2001-4dd7-c228-0-7285-c2ff-fe6c-992d.ipv6dyn.netcologne.de [IPv6:2001:4dd7:c228:0:7285:c2ff:fe6c:992d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by cc-smtpin1.netcologne.de (Postfix) with ESMTPSA id F267311D93; Wed, 4 Aug 2021 09:05:03 +0200 (CEST) Subject: Re: [PATCH 1/7] fortran: new abstract class gfc_dummy_arg To: Mikael Morin , fortran@gcc.gnu.org, gcc-patches@gcc.gnu.org, Mikael Morin References: <20210803153945.1309734-1-mikael@gcc.gnu.org> <20210803153945.1309734-2-mikael@gcc.gnu.org> From: Thomas Koenig Message-ID: Date: Wed, 4 Aug 2021 09:05:03 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0 MIME-Version: 1.0 In-Reply-To: <20210803153945.1309734-2-mikael@gcc.gnu.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-NetCologne-Spam: L X-Rspamd-Queue-Id: F267311D93 X-Spam-Status: No, score=-3.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Aug 2021 07:05:12 -0000 Hi Mikael, > Introduce a new abstract class gfc_dummy_arg that provides a common > interface to both dummy arguments of user-defined procedures (which > have type gfc_formal_arglist) and dummy arguments of intrinsic procedures > (which have type gfc_intrinsic_arg). good to see you again! So far, we have refrained from adding too much explicit C++-isms into the code, and if we do, my participation at least will have to be reduced sharply (I don't speak much C++, and I don't intend to learn). So, is this a path we want to go down? Regards Thomas