aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/Containers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Utilities/Containers.h')
-rw-r--r--src/common/Utilities/Containers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Utilities/Containers.h b/src/common/Utilities/Containers.h
index bec7344cb6d..4a764629937 100644
--- a/src/common/Utilities/Containers.h
+++ b/src/common/Utilities/Containers.h
@@ -239,7 +239,7 @@ namespace Trinity
++first1;
else if (*first2 < *first1)
++first2;
- else if (!std::invoke(std::forward<Predicate>(equalPred), *first1, *first2))
+ else if (!std::forward<Predicate>(equalPred)(*first1, *first2))
++first1, ++first2;
else
return true;