diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-11-07 23:28:21 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-11-12 20:55:41 -0800 |
commit | 282e6a9f48e06f39e58073f188e6e8020af9145b (patch) | |
tree | 3c063af35e7a558cf072a559a6ddb07870922cc0 | |
parent | 63b47ff5300c73b0392a4e43e461fb0e709a39be (diff) | |
download | subsurface-282e6a9f48e06f39e58073f188e6e8020af9145b.tar.gz |
Cleanup: remove unsused flags in struct dive_trip
Usage of the flags expanded, selected and fixup was removed some
time ago. Remove the flags too.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
-rw-r--r-- | core/dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index bca4e16b4..7e4336317 100644 --- a/core/dive.h +++ b/core/dive.h @@ -295,7 +295,7 @@ typedef struct dive_trip int nrdives, showndives; /* Used by the io-routines to mark trips that have already been written. */ bool saved; - unsigned expanded : 1, selected : 1, autogen : 1, fixup : 1; + bool autogen; struct dive_trip *next; } dive_trip_t; |