3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-18 02:16:40 +00:00

Fix code formatting: Incorrect indentation.

This commit is contained in:
Bruce Mitchener 2018-01-02 23:11:36 +07:00
parent f5bba63674
commit a5a31fc23c

View file

@ -29,7 +29,7 @@ Revision History:
// ----------------------------------- // -----------------------------------
template<class Set1, class Set2> template<class Set1, class Set2>
void set_intersection(Set1 & tgt, const Set2 & src) { void set_intersection(Set1 & tgt, const Set2 & src) {
svector<typename Set1::data> to_remove; svector<typename Set1::data> to_remove;
for (auto const& itm : tgt) for (auto const& itm : tgt)
if (!src.contains(itm)) if (!src.contains(itm))