Boost C++ Libraries: Ticket #968: xml_grammar - incorrect define char https://svn.boost.org/trac10/ticket/968 <p> libs\serialization\src\xml_grammar.cpp, line 52. Now code: </p> <pre class="wiki"> Char = chset_t("\x9\xA\xD\x20-\xFF"); </pre><p> Need: </p> <pre class="wiki"> Char = chset_t("\x9\xA\xD\x20-\x7f\x80\x81-\xFF"); </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/968 Trac 1.4.3 Eric Niebler Wed, 11 Jul 2007 02:06:51 GMT owner set https://svn.boost.org/trac10/ticket/968#comment:1 https://svn.boost.org/trac10/ticket/968#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Robert Ramey</span> </li> </ul> Ticket Robert Ramey Fri, 30 Nov 2007 19:22:40 GMT status changed https://svn.boost.org/trac10/ticket/968#comment:2 https://svn.boost.org/trac10/ticket/968#comment:2 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">assigned</span> </li> </ul> <p> How is </p> <p> Char = chset_t("\x9\xA\xD\x20-\xFF"); </p> <p> different than </p> <p> Char = chset_t("\x9\xA\xD\x20-\x7f\x80\x81-\xFF"); </p> <p> ? </p> <p> Robert Ramey </p> Ticket Robert Ramey Fri, 30 Nov 2007 21:45:59 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/968#comment:3 https://svn.boost.org/trac10/ticket/968#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> </ul> <p> Ill add this in anyway for the test rround </p> Ticket