fixed code example errors in docs

[SVN r2141]
This commit is contained in:
Daniel Wallin
2004-04-17 10:51:12 +00:00
parent 9c3296ef74
commit 2bc1676024

View File

@@ -161,19 +161,19 @@ void foo_impl(const Params&);
void foo()
{
foo_impl(foo_keywords());
foo_impl(foo_keywords()());
}
template<class A0>
void foo(const A0& a0)
{
foo_impl(foo_keywords(a0));
foo_impl(foo_keywords()(a0));
}
template<class A0, class A1>
void foo(const A0& a0, const A1& a1)
{
foo_impl(foo_keywords(a0, a1));
foo_impl(foo_keywords()(a0, a1));
}
</pre>
</div>
@@ -437,7 +437,7 @@ of lack of SFINAE support.</td></tr>
<hr class="footer" />
<div class="footer">
<a class="reference" href="named_params.rst">View document source</a>.
Generated on: 2004-04-14 14:38 UTC.
Generated on: 2004-04-17 10:54 UTC.
Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
</body>