[Bug c++/20175] [3.4/4.0 Regression] Warnings are issued when initializing struct members with "strings"

2005-02-24 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-02-24 21:21 --- Subject: Bug 20175 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-02-24 21:21:28 Modified files: gcc/cp : ChangeLog gcc/testsuite : C

[Bug c++/20175] [3.4/4.0 Regression] Warnings are issued when initializing struct members with "strings"

2005-02-24 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-02-24 12:34 --- Patch here: -- What|Removed |Added

[Bug c++/20175] [3.4/4.0 Regression] Warnings are issued when initializing struct members with "strings"

2005-02-24 Thread jakub at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |jakub at gcc dot gnu dot org |dot org | Status|NEW

[Bug c++/20175] [3.4/4.0 Regression] Warnings are issued when initializing struct members with "strings"

2005-02-23 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-23 18:27 --- Confirmed, this was introduced (most likely when the patch to fix for PR 19755 was committed). Reduced testcase: struct c { char s[8]; int i;}; struct c a = {"hello", 1}; -- What|Removed