From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 39218 invoked by alias); 27 Nov 2018 12:58:04 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 39203 invoked by uid 89); 27 Nov 2018 12:58:03 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.9 required=5.0 tests=BAYES_00,GIT_PATCH_2,GIT_PATCH_3,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 27 Nov 2018 12:58:02 +0000 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B996430E0BF5; Tue, 27 Nov 2018 12:58:01 +0000 (UTC) Received: from tucnak.zalov.cz (ovpn-117-187.ams2.redhat.com [10.36.117.187]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 61E3E5C70A; Tue, 27 Nov 2018 12:58:01 +0000 (UTC) Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.15.2/8.15.2) with ESMTP id wARCvxsP027826; Tue, 27 Nov 2018 13:57:59 +0100 Received: (from jakub@localhost) by tucnak.zalov.cz (8.15.2/8.15.2/Submit) id wARCvvGl027825; Tue, 27 Nov 2018 13:57:57 +0100 Date: Tue, 27 Nov 2018 12:58:00 -0000 From: Jakub Jelinek To: Martin Sebor Cc: Gcc Patch List , Martin =?utf-8?B?TGnFoWth?= Subject: Re: [PATCH/coding style] clarify pointers and operators Message-ID: <20181127125757.GQ12380@tucnak> Reply-To: Jakub Jelinek References: <6bce0b3a-0b0d-f03f-5f92-e00156e63629@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6bce0b3a-0b0d-f03f-5f92-e00156e63629@gmail.com> User-Agent: Mutt/1.9.2 (2017-12-15) X-IsSubscribed: yes X-SW-Source: 2018-11/txt/msg02177.txt.bz2 On Mon, Nov 26, 2018 at 10:59:47AM -0700, Martin Sebor wrote: > --- htdocs/codingconventions.html 30 Sep 2018 14:38:46 -0000 1.85 > +++ htdocs/codingconventions.html 26 Nov 2018 17:59:21 -0000 > @@ -803,12 +803,17 @@ > - x > > cast > - (foo) x > - (foo)x > + (type) x > + (type)x > > - pointer dereference > - *x > - * x Why have you removed the pointer dereference case, rather than just added the new cases and replaced foo with type for cast? We want people to write *x rather than * x. Jakub