 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Seungbeom Kim Guest
|
Posted: Fri Mar 10, 2006 3:46 pm Post subject: Defect Report: Postcondition for basic_ios::clear(iostate) i |
|
|
Section: 27.4.4.3 [lib.iostate.flags]
Paragraph 4 says:
| Quote: | void clear(iostate state = goodbit);
Postcondition: If rdbuf()!=0 then state == rdstate(); otherwise
rdstate()==state|ios_base::badbit.
|
The postcondition "rdstate()==state|ios_base::badbit" is parsed as
"(rdstate()==state)|ios_base::badbit", which is probably what the
committee meant.
Proposed resolution: "rdstate()==state|ios_base::badbit" should be
replaced with "rdstate()==(state|ios_base::badbit)".
--
Seungbeom Kim
---
[ comp.std.c++ is moderated. To submit articles, try just posting with ]
[ your news-reader. If that fails, use mailto:std-c++@ncar.ucar.edu ]
[ --- Please see the FAQ before posting. --- ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html ] |
|
| Back to top |
|
 |
sebor@roguewave.com Guest
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|