~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/progress.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
Import upstream version 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
      std::istream::fmtflags old_flags = m_os.setf( std::istream::fixed,
52
52
                                                   std::istream::floatfield );
53
53
      std::streamsize old_prec = m_os.precision( 2 );
54
 
      m_os << elapsed() << " s\n" // "s" is System International d'Unit�s std
 
54
      m_os << elapsed() << " s\n" // "s" is System International d'Unites std
55
55
                        << std::endl;
56
56
      m_os.flags( old_flags );
57
57
      m_os.precision( old_prec );