diff options
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) { |