diff options
| -rw-r--r-- | include/ocl/fix.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ocl/fix.hpp b/include/ocl/fix.hpp index 26742bd..53c7e4f 100644 --- a/include/ocl/fix.hpp +++ b/include/ocl/fix.hpp @@ -16,10 +16,10 @@ namespace ocl::fix { template <typename It, class Pred> - It find(It begin, It end, Pred callable); + Pred find(It begin, It end, Pred callable); - template <typename It, class Callable> - It find_if(It begin, It end, Callable callable); + template <typename It, class Pred> + Pred find_if(It begin, It end, Pred callable); } // namespace ocl::fix |
