Boost C++ Libraries: Ticket #3279: SymmetricFilter does not compile with non-char types https://svn.boost.org/trac10/ticket/3279 <p> If I use <a class="missing wiki">SymmetricFilter</a> template with a type other than char (i.e. uint8_t) I get a compiler error when compiling boost/iostreams/filter/symmetric.hpp: </p> <blockquote> <p> template&lt;typename Sink&gt; void close(Sink&amp; snk, BOOST_IOS::openmode which) </p> </blockquote> <p> IMHO the lines </p> <blockquote> <p> char dummy; const char* end = &amp;dummy; </p> </blockquote> <p> should read </p> <blockquote> <p> char_type dummy; const char_type* end = &amp;dummy; </p> </blockquote> <p> Please consider a change. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/3279 Trac 1.4.3 Steven Watanabe Tue, 15 Jun 2010 22:24:25 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/3279#comment:1 https://svn.boost.org/trac10/ticket/3279#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> (In <a class="changeset" href="https://svn.boost.org/trac10/changeset/63006" title="Make symmetric_filter compile with wchar_t. Fixes #3279.">[63006]</a>) Make symmetric_filter compile with wchar_t. Fixes <a class="closed ticket" href="https://svn.boost.org/trac10/ticket/3279" title="#3279: Bugs: SymmetricFilter does not compile with non-char types (closed: fixed)">#3279</a>. </p> Ticket