mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 20:18:18 +00:00
fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
154b09309b
commit
ae2672f132
|
@ -361,7 +361,7 @@ void set_fatal_error_handler(void (*pfn)(int error_code));
|
||||||
|
|
||||||
|
|
||||||
template<typename S, typename T>
|
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)
|
for (auto const& s : set)
|
||||||
if (p(s))
|
if (p(s))
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue