>> std::endl; is bad :)

[SVN r17078]
This commit is contained in:
Douglas Gregor
2003-01-29 13:49:14 +00:00
parent 3cb116cf11
commit 8b6ebc4c42

View File

@ -71,7 +71,7 @@ f = int_div();
<p> Now we can use <code>f</code> to execute the underlying function object <p> Now we can use <code>f</code> to execute the underlying function object
<code>int_div</code>: <code>int_div</code>:
<pre> <pre>
std::cout &lt;&lt; f(5, 3) &gt;&gt; std::endl; std::cout &lt;&lt; f(5, 3) &lt;&lt; std::endl;
</pre> </pre>
<p> We are free to assign any compatible function object to <code>f</code>. If <code>int_div</code> had been declared to take two <code>long</code> operands, <p> We are free to assign any compatible function object to <code>f</code>. If <code>int_div</code> had been declared to take two <code>long</code> operands,
@ -252,7 +252,7 @@ function objects, Boost.Function will not throw exceptions during
<address><a href="mailto:gregod@cs.rpi.edu">Douglas Gregor</a></address> <address><a href="mailto:gregod@cs.rpi.edu">Douglas Gregor</a></address>
<!-- Created: Fri Jul 13 12:47:11 EDT 2001 --> <!-- Created: Fri Jul 13 12:47:11 EDT 2001 -->
<!-- hhmts start --> <!-- hhmts start -->
Last modified: Mon Aug 5 11:07:17 EDT 2002 Last modified: Wed Jan 29 08:49:02 EST 2003
<!-- hhmts end --> <!-- hhmts end -->
</body> </body>
</html> </html>