id summary reporter owner description type status milestone component version severity resolution keywords cc 3866 detail/container_fwd.hpp lacks support for the parallel mode of GCC's STL Sylvain.Pion@… Daniel James "GCC supports a parallel mode activated by _GLIBCXX_PARALLEL. If you include under this parallel mode, you get compilation errors. detail/container_fwd.hpp needs to be updated to support it, in a similar way as the debug mode. The following patch appears to fix it : Index: detail/container_fwd.hpp =================================================================== --- detail/container_fwd.hpp (révision 59275) +++ detail/container_fwd.hpp (copie de travail) @@ -13,7 +13,7 @@ #include #include -#if ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) && defined(_GLIBCXX_DEBUG)) \ +#if ((defined(__GLIBCPP__) || defined(__GLIBCXX__)) && (defined(_GLIBCXX_DEBUG) || defined(_GLIBCXX_PARALLEL)) \ || BOOST_WORKAROUND(__BORLANDC__, > 0x551) \ || BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x842)) \ || (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) (I have lost my SVN access rights so I can't commit it myself) " Bugs closed Boost 1.43.0 None Boost 1.41.0 Problem fixed Stephane.Tayeb@…