From 8b6ebc4c425fc50adb7ea6af18f7e16d015f6c42 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Wed, 29 Jan 2003 13:49:14 +0000 Subject: [PATCH] >> std::endl; is bad :) [SVN r17078] --- doc/tutorial.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial.html b/doc/tutorial.html index e875058..249f300 100644 --- a/doc/tutorial.html +++ b/doc/tutorial.html @@ -71,7 +71,7 @@ f = int_div();

Now we can use f to execute the underlying function object int_div:

-std::cout << f(5, 3) >> std::endl;
+std::cout << f(5, 3) << std::endl;
 

We are free to assign any compatible function object to f. If int_div had been declared to take two long operands, @@ -252,7 +252,7 @@ function objects, Boost.Function will not throw exceptions during

Douglas Gregor
-Last modified: Mon Aug 5 11:07:17 EDT 2002 +Last modified: Wed Jan 29 08:49:02 EST 2003