From 44209bcfee561efb73fbe0c27373f5f8d55c6046 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 30 Dec 2025 08:00:27 +0100 Subject: feat: fix function signature of find, and find_if. Signed-off-by: Amlal El Mahrouss --- include/ocl/fix.hpp | 6 +++--- 1 file 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 - It find(It begin, It end, Pred callable); + Pred find(It begin, It end, Pred callable); - template - It find_if(It begin, It end, Callable callable); + template + Pred find_if(It begin, It end, Pred callable); } // namespace ocl::fix -- cgit v1.2.3