From a37518cb4aeba45d63aa1e5354eb6f7778a209a6 Mon Sep 17 00:00:00 2001
From: John Maddock
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..