From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 840A215ACB3 for ; Fri, 7 Apr 2023 10:41:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF7E2E0823; Fri, 7 Apr 2023 10:41:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A88F0E0823 for ; Fri, 7 Apr 2023 10:41:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CAA1C335CD6 for ; Fri, 7 Apr 2023 10:41:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 19CC59FA for ; Fri, 7 Apr 2023 10:41:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1680863946.6642bdf54d071d7b93b3f6fb4bc24df4075c8de1.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/install-qa-check.d/ X-VCS-Repository: proj/portage X-VCS-Files: bin/install-qa-check.d/90gcc-warnings X-VCS-Directories: bin/install-qa-check.d/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6642bdf54d071d7b93b3f6fb4bc24df4075c8de1 X-VCS-Branch: master Date: Fri, 7 Apr 2023 10:41:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 29983320-4818-484a-bb5f-c303fb132a00 X-Archives-Hash: 70b447586990ae055cc1f0f8a901d854 commit: 6642bdf54d071d7b93b3f6fb4bc24df4075c8de1 Author: Sam James gentoo org> AuthorDate: Fri Apr 7 10:39:06 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Apr 7 10:39:06 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=6642bdf5 bin/install-qa-check.d/90gcc-warnings: add -Wimplicit-int This will be rejected by modern compilers soon: https://wiki.gentoo.org/wiki/Modern_C_porting. Signed-off-by: Sam James gentoo.org> bin/install-qa-check.d/90gcc-warnings | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/install-qa-check.d/90gcc-warnings b/bin/install-qa-check.d/90gcc-warnings index 431cc7639..dbfbc4a9a 100644 --- a/bin/install-qa-check.d/90gcc-warnings +++ b/bin/install-qa-check.d/90gcc-warnings @@ -118,6 +118,9 @@ gcc_warn_check() { # warning: argument value A will result in undefined behaviour (Clang) 'warning: .*\[-Wargument-undefined-behaviour\]' + # general sensible warnings (will be rejected by modern compilers soon) + 'warning: .*\[-Wimplicit-int\]' + # this may be valid code :/ #': warning: multi-character character constant' # need to check these two ...