diff options
author | lloyd <[email protected]> | 2006-07-01 21:09:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-07-01 21:09:54 +0000 |
commit | 6d3a4de1efcb6b04a1ab87037d487f979d7ca445 (patch) | |
tree | 02342b193a3808d2010b441480f65aa45a23dc92 /include/stl_util.h | |
parent | 3d1d14cf405111e30643cf4c7674d441cc07a2e0 (diff) |
Access the global configuration through an object reference instead
of stand-alone functions. Store the configuration in a distinct
object, rather than just a map inside the library state.
Diffstat (limited to 'include/stl_util.h')
-rw-r--r-- | include/stl_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stl_util.h b/include/stl_util.h index 5ecbe0d9c..f1ffbff52 100644 --- a/include/stl_util.h +++ b/include/stl_util.h @@ -13,7 +13,7 @@ namespace Botan { /************************************************* * Copy-on-Predicate Algorithm * *************************************************/ -template <typename InputIterator, typename OutputIterator, typename Predicate> +template<typename InputIterator, typename OutputIterator, typename Predicate> OutputIterator copy_if(InputIterator current, InputIterator end, OutputIterator dest, Predicate copy_p) { |