*** format_implementation.hpp.orig Tue Sep 6 14:34:39 2005 --- format_implementation.hpp Tue Sep 6 14:35:05 2005 *************** *** 37,43 **** template< class Ch, class Tr, class Alloc> basic_format:: basic_format(const Ch* str, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), ! loc_(loc), exceptions_(io::all_error_bits) { if(str) parse( str ); } --- 37,43 ---- template< class Ch, class Tr, class Alloc> basic_format:: basic_format(const Ch* str, const std::locale & loc) : style_(0), cur_arg_(0), num_args_(0), dumped_(false), ! exceptions_(io::all_error_bits), loc_(loc) { if(str) parse( str ); } *************** *** 45,51 **** 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) { parse(s); } --- 45,51 ---- 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), ! exceptions_(io::all_error_bits), loc_(loc) { parse(s); }