diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-04-11 15:00:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-05-06 13:58:09 -0700 |
commit | 2c4975f2ed728543d59300a622aa146fd94b4bd1 (patch) | |
tree | 5658d15b70690a7bc66bd213e32ad181d16717f1 /core/dive.h | |
parent | fdca1303870ebeb0ea846984e0a9eb8804000390 (diff) | |
download | subsurface-2c4975f2ed728543d59300a622aa146fd94b4bd1.tar.gz |
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>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index 7daf74293..12b2a102a 100644 --- a/core/dive.h +++ b/core/dive.h @@ -345,7 +345,6 @@ extern struct event *clone_event(const struct event *src_ev); extern void copy_events(const struct divecomputer *s, struct divecomputer *d); extern void copy_events_until(const struct dive *sd, struct dive *dd, int time); extern void free_events(struct event *ev); -extern void copy_cylinders(const struct cylinder_table *s, struct cylinder_table *d); extern void copy_used_cylinders(const struct dive *s, struct dive *d, bool used_only); extern void copy_samples(const struct divecomputer *s, struct divecomputer *d); extern bool is_cylinder_used(const struct dive *dive, int idx); |