]> git.tdb.fi Git - libs/core.git/commitdiff
Make any_equals take a const reference to the container
authorMikko Rasa <tdb@tdb.fi>
Fri, 6 Sep 2024 11:44:07 +0000 (14:44 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 6 Sep 2024 11:44:07 +0000 (14:44 +0300)
source/core/algorithm.h

index 43bbaeeb2c00ace3199beae6b1af8052cd0bfb51..e2a30bf16431d9ec9b5182fbf06d96527460c305 100644 (file)
@@ -39,7 +39,7 @@ struct ValueMatch
 };
 
 template<typename Container, typename T>
-inline bool any_equals(Container &cont, const T &value)
+inline bool any_equals(const Container &cont, const T &value)
 {
        return std::any_of(cont.begin(), cont.end(), ValueMatch<T>{value});
 }