mirror of
https://github.com/Z3Prover/z3
synced 2025-06-02 20:31:21 +00:00
build errors on shrink
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5a825d7ac3
commit
04d709dae1
1 changed files with 3 additions and 0 deletions
|
@ -321,6 +321,8 @@ public:
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
// TBD: not sure why some compilers complain here.
|
||||||
ref_vector& filter_update(std::function<bool(T)>& predicate) {
|
ref_vector& filter_update(std::function<bool(T)>& predicate) {
|
||||||
unsigned j = 0;
|
unsigned j = 0;
|
||||||
for (auto& t : *this)
|
for (auto& t : *this)
|
||||||
|
@ -329,6 +331,7 @@ public:
|
||||||
shrink(j);
|
shrink(j);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
template <typename S>
|
template <typename S>
|
||||||
vector<S> mapv_pure(std::function<S(T)>& f) const {
|
vector<S> mapv_pure(std::function<S(T)>& f) const {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue