[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-11-02 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-11-02 19:00 --- Subject: Bug 17922 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-11-02 19:00:19 Modified files: libstdc++-v3 : ChangeLog

[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-11-01 Thread bkoz at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |bkoz at gcc dot gnu dot org |dot org | Status|NEW

[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-10-31 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2004-11-01 00:44 --- Postponed until GCC 3.4.4. -- What|Removed |Added Target Milestone|3.4.3

[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-10-11 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2004-10-11 12:21 --- Confirmed. In fact we have: enum _Ios_Seekdir { _S_ios_seekdir_end = 1L 16 }; class ios_base { typedef _Ios_Seekdir seekdir; static const seekdir beg = seekdir(0); static const seekdir

[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-10-11 Thread pcarlini at suse dot de
--- Additional Comments From pcarlini at suse dot de 2004-10-11 14:47 --- By the way, the other flags (e.g. openmode, iostate, fmflags) are affected by the same problem. Unfortunately, I'm not sure we can fix this within the 3.4/4.0 ABI. --

[Bug libstdc++/17922] [3.3/3.4/4.0 regression] Spurious warnings about std::ios_base::seekdir

2004-10-11 Thread bkoz at gcc dot gnu dot org
--- Additional Comments From bkoz at gcc dot gnu dot org 2004-10-11 20:49 --- could add enum _Ios_Seekdir { _S_ios_seekdir_beg = 0, _S_ios_seekdir_cur = 1, _S_ios_seekdir_end = 2 _S_ios_seekdir_final = 1L 16 }; This would change the value of (the currently unfortunately named)