id summary reporter owner description type status milestone component version severity resolution keywords cc 1545 [boost/rational.hpp] 'noskipws' is not a member of 'std' faridz@… Jonathan Turkanis "The [http://incubator.apache.org/stdcxx/ stdcxx] is the another implementation of the STL (initially based on RogueWave STL). The following error is encountered when running boost regression tests on msvc with stdcxx-4.2.0. {{{ ..\boost\rational.hpp(555) : error C2039: 'noskipws' : is not a member of 'std' D:\boost\boost\libs\rational\rational_test.cpp(806) : see reference to function template instantiation 'std::istream &boost::operator >>(std::istream &,boost::rational &)' being compiled with [ IntType=short ] }}} The std::noskipws manipulator is declared in header file. The proposed patch: {{{ --- boost/rational.hpp +++ boost/rational.hpp @@ -51,7 +51,7 @@ #define BOOST_RATIONAL_HPP #include // for std::istream and std::ostream -#include // for std::noskipws +#include // for std::noskipws #include // for std::domain_error #include // for std::string implicit constructor #include // for boost::addable etc }}} " Bugs closed Boost 1.36.0 None Boost Development Trunk Problem fixed