3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-11-04 14:11:24 -07:00
parent 154b09309b
commit ae2672f132

View file

@ -361,7 +361,7 @@ void set_fatal_error_handler(void (*pfn)(int error_code));
template<typename S, typename T>
bool any_of(S& set, T& p) {
bool any_of(S& set, T const& p) {
for (auto const& s : set)
if (p(s))
return true;