From 1b8d5a307a3219ef3b5ee51d80ae0cfb448269bb Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Thu, 4 Aug 2022 15:29:59 +0100 Subject: [PATCH] Changed std::lower_bound to etl::lower_bound --- include/etl/algorithm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/etl/algorithm.h b/include/etl/algorithm.h index 467d2758..bb787032 100644 --- a/include/etl/algorithm.h +++ b/include/etl/algorithm.h @@ -430,7 +430,7 @@ namespace etl template bool binary_search(TIterator first, TIterator last, const T& value, Compare compare) { - first = std::lower_bound(first, last, value, compare); + first = etl::lower_bound(first, last, value, compare); return (!(first == last) && !(compare(value, *first))); }