$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r77269 - trunk/libs/math/example
From: pbristow_at_[hidden]
Date: 2012-03-08 13:13:02
Author: pbristow
Date: 2012-03-08 13:13:01 EST (Thu, 08 Mar 2012)
New Revision: 77269
URL: http://svn.boost.org/trac/boost/changeset/77269
Log:
Minor changes to simple example.
Text files modified: 
   trunk/libs/math/example/nonfinite_facet_simple.cpp |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: trunk/libs/math/example/nonfinite_facet_simple.cpp
==============================================================================
--- trunk/libs/math/example/nonfinite_facet_simple.cpp	(original)
+++ trunk/libs/math/example/nonfinite_facet_simple.cpp	2012-03-08 13:13:01 EST (Thu, 08 Mar 2012)
@@ -218,14 +218,14 @@
   // Similarly if we can switch back to the default C locale.
   cout.imbue (default_locale);
   cout <<  "infinity in default C representation is " << plus_infinity << endl; 
-  cout <<  "infinity in default C representation (setw(" << width << ") is " << setw(width) << plus_infinity <<'|' << endl; 
-  cout <<  "infinity in default C representation (setw(" << width << ") is " << left << setw(width) << plus_infinity <<'|' << endl; 
-  cout <<  "infinity in default C representation (setw(" << width << ") is " << internal << setw(width) << plus_infinity <<'|' << endl; 
+  cout <<  "infinity in default C representation (setw(" << width << ") is |" << setw(width) << plus_infinity <<'|' << endl; 
+  cout <<  "infinity in default C representation (setw(" << width << ") is |" << left << setw(width) << plus_infinity <<'|' << endl; 
+  cout <<  "infinity in default C representation (setw(" << width << ") is |" << internal << setw(width) << plus_infinity <<'|' << endl; 
 
   cout.imbue (C99_out_locale);
-  cout << "infinity in C99 representation (setw(" << width << ") is " << right << setw(width) << plus_infinity <<'|'<< endl; 
-  cout << "infinity in C99 representation (setw(" << width << ") is " << left << setw(width) << plus_infinity <<'|'<< endl; 
-  cout << "infinity in C99 representation (setw(" << width << ") is " << internal << setw(width) << plus_infinity <<'|'<< endl; 
+  cout << "infinity in C99 representation (setw(" << width << ") is |" << right << setw(width) << plus_infinity <<'|'<< endl; 
+  cout << "infinity in C99 representation (setw(" << width << ") is |" << left << setw(width) << plus_infinity <<'|'<< endl; 
+  cout << "infinity in C99 representation (setw(" << width << ") is |" << internal << setw(width) << plus_infinity <<'|'<< endl; 
 
   return 0;
 } // int main()