From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id BF04C3858C2F; Mon, 10 Jul 2023 14:24:03 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BF04C3858C2F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688999043; bh=DMNUSpAduwvjjVLyXubLxOdtsnAGpnrHcIpc+Wl6vaI=; h=From:To:Subject:Date:From; b=VraweP0kb6CnZGt5i2Izg0DDS+hgDhZ4nrf57f1iNn6Gy9l4UeqVqu83ofMkzF9x9 8Y8ssLiEOWhDtkiaaR30yLQ5+60fT95D7KvuU6IFCmWGpEWAERDb9aLBjXlyPulrnP XXwRNbih+++jRRpF2sFTvqXqJEyTNbRA6kVZm570= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/110612] New: text-art: four clang warnings Date: Mon, 10 Jul 2023 14:24:03 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Version: unknown X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110612 Bug ID: 110612 Summary: text-art: four clang warnings Product: gcc Version: unknown Status: UNCONFIRMED Severity: normal Priority: P3 Component: c Assignee: unassigned at gcc dot gnu.org Reporter: dcb314 at hotmail dot com Target Milestone: --- For the text-art directory, here is the list of warnings produced by a build of gcc trunk by clang: ../../trunk.year/gcc/text-art/table.cc:561:15: warning: comparison of integ= ers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Wsign-compare] ../../trunk.year/gcc/text-art/table.cc:573:15: warning: comparison of integ= ers of different signs: 'int' and 'size_type' (aka 'unsigned long') [-Wsign-compare] ../../trunk.year/gcc/text-art/table.h:235:16: warning: private field 'm_tab= le' is not used [-Wunused-private-field] ../../trunk.year/gcc/text-art/widget.h:151:8: warning: 'update_child_alloc_rects' overrides a member function but is not marked 'override' [-Winconsistent-missing-override] These might be worth fixing.=