--- format_implementation.hpp.old 2007-12-15 12:36:31.000000000 -0500 +++ format_implementation.hpp 2008-03-19 14:53:50.000000000 -0400 @@ -37,7 +37,7 @@ template< class Ch, class Tr, class Alloc> basic_format:: basic_format(const Ch* s, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), - loc_(loc), exceptions_(io::all_error_bits) + exceptions_(io::all_error_bits), loc_(loc) { if(s) parse( s ); } @@ -45,7 +45,7 @@ template< class Ch, class Tr, class Alloc> basic_format:: basic_format(const string_type& s, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), - loc_(loc), exceptions_(io::all_error_bits) + exceptions_(io::all_error_bits), loc_(loc) { parse(s); }