summaryrefslogtreecommitdiff
path: root/shared/global_func.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/global_func.h')
-rw-r--r--shared/global_func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/global_func.h b/shared/global_func.h
index c3994ca0..20221f63 100644
--- a/shared/global_func.h
+++ b/shared/global_func.h
@@ -192,7 +192,7 @@ template <class ForwardIterator, class T, typename Compare>
inline
ForwardIterator common::custom_binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp)
{
- first = lower_bound(first, last, value, comp);
+ first = std::lower_bound(first, last, value, comp);
if (first != last && !comp(value, *first))
return first;
else
bgstack15