$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r53873 - branches/release/boost/format
From: steven_at_[hidden]
Date: 2009-06-13 14:43:17
Author: steven_watanabe
Date: 2009-06-13 14:43:16 EDT (Sat, 13 Jun 2009)
New Revision: 53873
URL: http://svn.boost.org/trac/boost/changeset/53873
Log:
Merge [53219] from the trunk.
Text files modified: 
   branches/release/boost/format/format_implementation.hpp |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/format/format_implementation.hpp
==============================================================================
--- branches/release/boost/format/format_implementation.hpp	(original)
+++ branches/release/boost/format/format_implementation.hpp	2009-06-13 14:43:16 EDT (Sat, 13 Jun 2009)
@@ -37,7 +37,7 @@
     template< class Ch, class Tr, class Alloc>
     basic_format<Ch, Tr, Alloc>:: 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<Ch, Tr, Alloc>:: 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);  
     }