[ http://issues.apache.org/jira/browse/STDCXX-205?page=all ] Anton Pevtsov updated STDCXX-205: --------------------------------- Summary: lib.string.io operator << calls width (0) in any case regardless of the sentry object truth (was: lib.string.io operator << calls width (0) in any case regardless of the sentry truth) corrected the summary string > lib.string.io operator << calls width (0) in any case regardless of the sentry object truth > ------------------------------------------------------------------------------------------- > > 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 > #include > #include > #include > 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