diff --git a/call_traits.htm b/call_traits.htm index ba00265..2c4f836 100644 --- a/call_traits.htm +++ b/call_traits.htm @@ -5,7 +5,7 @@ content="text/html; charset=iso-8859-1"> - +
The call_traits template will "optimize" the passing of a small built-in type as a function parameter, this mainly has an effect when the parameter is used within a loop body. In the -following example (see algo_opt_examples.cpp), +following example (see fill_example.cpp), a version of std::fill is optimized in two ways: if the type passed is a single byte built-in type then std::memset is used to effect the fill, otherwise a conventional C++ implemention is @@ -751,7 +752,8 @@ Hinnant and John Maddock.
Maintained by John Maddock, the latest version of this file can be found at www.boost.org, and the boost -discussion list at www.yahoogroups.com/list/boost.
+discussion list at www.yahoogroups.com/list/boost..