Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62671 - trunk/boost/format
From: steven_at_[hidden]
Date: 2010-06-09 13:19:54


Author: steven_watanabe
Date: 2010-06-09 13:19:52 EDT (Wed, 09 Jun 2010)
New Revision: 62671
URL: http://svn.boost.org/trac/boost/changeset/62671

Log:
Remove a few non-ASCII characters
Text files modified:
   trunk/boost/format/alt_sstream_impl.hpp | 2 +-
   trunk/boost/format/internals.hpp | 2 +-
   2 files changed, 2 insertions(+), 2 deletions(-)

Modified: trunk/boost/format/alt_sstream_impl.hpp
==============================================================================
--- trunk/boost/format/alt_sstream_impl.hpp (original)
+++ trunk/boost/format/alt_sstream_impl.hpp 2010-06-09 13:19:52 EDT (Wed, 09 Jun 2010)
@@ -140,7 +140,7 @@
         typename basic_altstringbuf<Ch, Tr, Alloc>::pos_type
         basic_altstringbuf<Ch, Tr, Alloc>::
         seekpos (pos_type pos, ::std::ios_base::openmode which) {
- off_type off = off_type(pos); // operation guaranteed by §27.4.3.2 table 88
+ off_type off = off_type(pos); // operation guaranteed by 27.4.3.2 table 88
             if(pptr() != NULL && putend_ < pptr())
                 putend_ = pptr();
             if(off != off_type(-1)) {

Modified: trunk/boost/format/internals.hpp
==============================================================================
--- trunk/boost/format/internals.hpp (original)
+++ trunk/boost/format/internals.hpp 2010-06-09 13:19:52 EDT (Wed, 09 Jun 2010)
@@ -148,7 +148,7 @@
 
     template<class Ch, class Tr> inline
     void stream_format_state<Ch,Tr>:: reset(Ch fill) {
- // set our params to standard's default state. cf § 27.4.4.1 of the C++ norm
+ // set our params to standard's default state. cf 27.4.4.1 of the C++ norm
         width_=0; precision_=6;
         fill_=fill; // default is widen(' '), but we cant compute it without the locale
         flags_ = std::ios_base::dec | std::ios_base::skipws;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk