mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
cleanup: move copy_cylinders from dive.c to equipment.c
Since this doesn't touch struct dive, dive.c is not an appropriate place for this function. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
fdca130387
commit
2c4975f2ed
4 changed files with 9 additions and 9 deletions
|
|
@ -619,14 +619,6 @@ int nr_weightsystems(const struct dive *dive)
|
|||
return dive->weightsystems.nr;
|
||||
}
|
||||
|
||||
void copy_cylinders(const struct cylinder_table *s, struct cylinder_table *d)
|
||||
{
|
||||
int i;
|
||||
clear_cylinder_table(d);
|
||||
for (i = 0; i < s->nr; i++)
|
||||
add_cloned_cylinder(d, s->cylinders[i]);
|
||||
}
|
||||
|
||||
void copy_used_cylinders(const struct dive *s, struct dive *d, bool used_only)
|
||||
{
|
||||
int i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue