id summary reporter owner description type status milestone component version severity resolution keywords cc 1543 [interprocess] 'streamoff' : is not a member of 'std' faridz@… Ion Gaztañaga " The [http://incubator.apache.org/stdcxx/ 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. {{{ ..\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: {{{ --- libs\interprocess\test\file_mapping_test.cpp +++ libs\interprocess\test\file_mapping_test.cpp @@ -11,6 +11,7 @@ #include #include #include +#include // for std::streamoff #include #include #include }}} " Bugs closed Boost 1.35.0 interprocess Boost Development Trunk Problem fixed Ion Gaztañaga