id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 1593,[intrprocess] 'streamoff' : is not a member of 'std',faridz@…,Ion Gaztañaga," The [http://stdcxx.apache.org/ stdcxx] is the another implementation of the STL (initially based on RogueWave STL). The following errors are encountered when running boost regression tests on msvc with stdcxx-4.2.0. {{{ file_mapping_test.cpp ..\libs\interprocess\test\file_mapping_test.cpp(31) : error C2039: 'streamoff' : is not a member of 'std' ..\libs\interprocess\test\file_mapping_test.cpp(31) : error C2061: syntax error : identifier 'streamoff' }}} The proposed patch: {{{ Index: libs/interprocess/test/file_mapping_test.cpp =================================================================== --- libs/interprocess/test/file_mapping_test.cpp (revision 42908) +++ libs/interprocess/test/file_mapping_test.cpp (working copy) @@ -9,6 +9,7 @@ ////////////////////////////////////////////////////////////////////////////// #include +#include // for std::streamoff #include #include #include }}} ",Bugs,closed,Boost 1.35.0,interprocess,Boost Development Trunk,Showstopper,fixed,,Ion Gaztañaga