1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00

fix mrege to unique: a5f291fa12

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2024-06-05 18:38:00 +02:00 committed by bstoeger
parent a1e6df46d9
commit f00c30ad4a

View file

@ -2264,7 +2264,7 @@ merge_result merge_dives(const struct dive &a_in, const struct dive &b_in, int o
} }
const dive *a = &a_in; const dive *a = &a_in;
const dive *b = &a_in; const dive *b = &b_in;
if (is_dc_planner(&a->dcs[0])) if (is_dc_planner(&a->dcs[0]))
std::swap(a, b); std::swap(a, b);