mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
fix for broken windows stl
This commit is contained in:
parent
2cc8132191
commit
cf3ede92ad
|
@ -445,7 +445,7 @@ namespace Duality {
|
|||
if(i == 0)
|
||||
common.swap(v);
|
||||
else {
|
||||
std::set_intersection(common.begin(),common.end(),v.begin(),v.end(),std::back_inserter(w),comp);
|
||||
std::set_intersection(common.begin(),common.end(),v.begin(),v.end(),std::inserter(w,w.begin()),comp);
|
||||
common.swap(w);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue