Skip to content

Commit

Permalink
Fix logical conflict not picked up by merge algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
btalamini committed Dec 5, 2024
1 parent 2c58613 commit f80fab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/serac/numerics/functional/domain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ Domain set_operation(SET_OPERATION op, const Domain& a, const Domain& b)
assert(a.dim_ == b.dim_);
assert(a.type_ == b.type_);

Domain output{a.mesh_, a.dim_, a.type_};
Domain combined{a.mesh_, a.dim_, a.type_};

using Ids = std::vector<int>;
auto apply_set_op = [&op](const Ids& x, const Ids& y) { return set_operation(op, x, y); };
Expand Down

0 comments on commit f80fab5

Please sign in to comment.