Boost C++ Libraries: Ticket #3637: extra opening { in format_implementation.hpp https://svn.boost.org/trac10/ticket/3637 <p> I just got the latest version of the source code from svn and when I compiled my program which uses the BGL, I got a compiler error. </p> <p> It looks as if there is an additional opening { in format/format_implementation.hpp line 199 which seems to be used by the BGL. </p> <p> Removing it lets me compile my program again. Here the diff </p> <p> --- boost/format/format_implementation.hpp (revision 57746) +++ boost/format/format_implementation.hpp (working copy) @@ -194,7 +194,7 @@ </p> <blockquote> <p> template&lt; class Ch, class Tr, class Alloc&gt; </p> </blockquote> <dl class="wiki"><dt>int basic_format&lt;Ch,Tr, Alloc&gt;</dt><dd> cur_arg() const { <ul><li></dd></dl> { return cur_arg_+1; } </li></ul><p> + return cur_arg_+1; } </p> <blockquote> <p> template&lt; class Ch, class Tr, class Alloc&gt; </p> </blockquote> <dl class="wiki"><dt>int basic_format&lt;Ch,Tr, Alloc&gt;</dt><dd> </dd></dl> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/3637 Trac 1.4.3 Steven Watanabe Wed, 18 Nov 2009 17:47:53 GMT component changed; owner set https://svn.boost.org/trac10/ticket/3637#comment:1 https://svn.boost.org/trac10/ticket/3637#comment:1 <ul> <li><strong>owner</strong> set to <span class="trac-author">Samuel Krempp</span> </li> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">format</span> </li> </ul> Ticket anonymous Wed, 18 Nov 2009 19:38:11 GMT status changed; resolution set https://svn.boost.org/trac10/ticket/3637#comment:2 https://svn.boost.org/trac10/ticket/3637#comment:2 <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> sorry for the typo, rwgk fixed it in <a class="changeset" href="https://svn.boost.org/trac10/changeset/57751" title="boost/format/format_implementation.hpp: fixing elementary syntax error ...">r57751</a> </p> Ticket