Opened 13 years ago

Closed 13 years ago

#3637 closed Bugs (fixed)

extra opening { in format_implementation.hpp

Reported by: ralphgauges@… Owned by: Samuel Krempp
Milestone: Boost 1.41.0 Component: format
Version: Boost Development Trunk Severity: Problem
Keywords: Cc:

Description

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.

It looks as if there is an additional opening { in format/format_implementation.hpp line 199 which seems to be used by the BGL.

Removing it lets me compile my program again. Here the diff

--- boost/format/format_implementation.hpp (revision 57746) +++ boost/format/format_implementation.hpp (working copy) @@ -194,7 +194,7 @@

template< class Ch, class Tr, class Alloc>

int basic_format<Ch,Tr, Alloc>
cur_arg() const {
{ return cur_arg_+1; }

+ return cur_arg_+1; }

template< class Ch, class Tr, class Alloc>

int basic_format<Ch,Tr, Alloc>

Change History (2)

comment:1 by Steven Watanabe, 13 years ago

Component: Noneformat
Owner: set to Samuel Krempp

comment:2 by anonymous, 13 years ago

Resolution: fixed
Status: newclosed

sorry for the typo, rwgk fixed it in r57751

Note: See TracTickets for help on using tickets.