mirror of
https://github.com/Z3Prover/z3
synced 2025-06-23 14:23:40 +00:00
fix for broken windows stl
This commit is contained in:
parent
2cc8132191
commit
cf3ede92ad
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ namespace Duality {
|
||||||
if(i == 0)
|
if(i == 0)
|
||||||
common.swap(v);
|
common.swap(v);
|
||||||
else {
|
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);
|
common.swap(w);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue