[ http://issues.apache.org/jira/browse/STDCXX-205?page=comments#action_12420399 ]
Martin Sebor commented on STDCXX-205: ------------------------------------- See the thread starting at: http://mail-archives.apache.org/mod_mbox/incubator-stdcxx-dev/200606.mbox/[EMAIL PROTECTED] > std::operator<<(ostream, string) calls width(0) regardless of sentry > -------------------------------------------------------------------- > > Key: STDCXX-205 > URL: http://issues.apache.org/jira/browse/STDCXX-205 > Project: C++ Standard Library > Type: Bug > Components: 21. Strings > Versions: 4.1.3 > Environment: all > Reporter: Anton Pevtsov > Priority: Minor > > The following test fails: > #include <iostream> > #include <sstream> > #include <string> > #include <cassert> > int main(int argc, char* argv[]) > { > std::string str ("abcdefghijk"); > std::ostringstream os; > const std::streamsize width = 2; > os.width (width); > os.clear (std::ios_base::failbit); > os << str; > assert (os.width () == width); > return 0; > } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira
