diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-05-30 18:29:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-06-19 13:11:10 -0700 |
commit | 6200909ba4ffba2d79770b7eacdb615eeb2c88c1 (patch) | |
tree | a5c63427daf5a3d73f179d5c63177edffe03c2e4 /core/parse-xml.c | |
parent | 46c69fccb79911b4ef1bc12606f39b072cbf19d3 (diff) | |
download | subsurface-6200909ba4ffba2d79770b7eacdb615eeb2c88c1.tar.gz |
Cleanup: move tag functions into own translation unit
Make dive.h a bit slimmer. It's only a drop in the bucket - but at
least when modifying tag functions not the *whole* application is
rebuilt anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/parse-xml.c')
-rw-r--r-- | core/parse-xml.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/parse-xml.c b/core/parse-xml.c index 43d0049a7..f4a7d60a9 100644 --- a/core/parse-xml.c +++ b/core/parse-xml.c @@ -29,6 +29,7 @@ #include "device.h" #include "membuffer.h" #include "qthelper.h" +#include "tag.h" int verbose, quit, force_root; int last_xml_version = -1; |