mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +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)
|
||||
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…
Add table
Add a link
Reference in a new issue