Boost C++ Libraries: Ticket #1592: [GIL] 'hex' : is not a member of 'std' in test/image.cpp https://svn.boost.org/trac10/ticket/1592 <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">image.cpp ..\libs\gil\test\image.cpp(400) : error C2039: 'hex' : is not a member of 'std' ..\libs\gil\test\image.cpp(400) : error C2065: 'hex' : undeclared identifier ..\libs\gil\test\image.cpp(446) : error C2039: 'hex' : is not a member of 'std' </pre><blockquote> <p> The proposed patch: </p> </blockquote> <pre class="wiki">Index: libs/gil/test/image.cpp =================================================================== --- libs/gil/test/image.cpp (revision 42908) +++ libs/gil/test/image.cpp (working copy) @@ -17,6 +17,7 @@ #include &lt;string&gt; #include &lt;vector&gt; +#include &lt;ios&gt; // for std::hex #include &lt;iostream&gt; #include &lt;fstream&gt; #include &lt;map&gt; </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/1592 Trac 1.4.3 Hailin Jin Tue, 22 Jan 2008 22:11:55 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/1592#comment:1 https://svn.boost.org/trac10/ticket/1592#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. </p> Ticket