Boost C++ Libraries: Ticket #1598: [regex] 'showbase' : is not a member of 'std' https://svn.boost.org/trac10/ticket/1598 <blockquote> <p> The <a class="ext-link" href="http://stdcxx.apache.org/"><span class="icon">​</span>stdcxx</a> is the another implementation of the STL (initially based on <a class="missing wiki">RogueWave</a> STL). </p> </blockquote> <blockquote> <p> The following errors are encountered when running boost regression tests on msvc with stdcxx-4.2.0. </p> </blockquote> <pre class="wiki">unicode_iterator_test.cpp ..\boost/regex/pending/unicode_iterator.hpp(119) : error C2039: 'showbase' : is not a member of 'std' ..\boost/regex/pending/unicode_iterator.hpp(119) : error C2065: 'showbase' : undeclared identifier ..\boost/regex/pending/unicode_iterator.hpp(119) : error C2039: 'hex' : is not a member of 'std' ..\boost/regex/pending/unicode_iterator.hpp(119) : error C2065: 'hex' : undeclared identifier </pre><p> The proposed patch: </p> <pre class="wiki">Index: boost/regex/pending/unicode_iterator.hpp =================================================================== --- boost/regex/pending/unicode_iterator.hpp (revision 42908) +++ boost/regex/pending/unicode_iterator.hpp (working copy) @@ -68,6 +68,7 @@ #include &lt;stdexcept&gt; #ifndef BOOST_NO_STD_LOCALE #include &lt;sstream&gt; +#include &lt;ios&gt; // for std::showbase, std::hex #endif #include &lt;limits.h&gt; // CHAR_BIT </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/1598 Trac 1.4.3 John Maddock Wed, 23 Jan 2008 16:09:36 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/1598#comment:1 https://svn.boost.org/trac10/ticket/1598#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> Fixed in latest SVN Trunk. </p> Ticket