summaryrefslogtreecommitdiffstats
path: root/core/parse.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-08-04 18:59:14 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-09 19:19:04 +0100
commit8df3705152aa32d8551b5fb7db08e0c8e442b480 (patch)
tree60879e7d4af85d71d64885ea903ac234a09bffda /core/parse.h
parent7c9f46acd202121e67557bb634961ef17a9f6c1f (diff)
downloadsubsurface-8df3705152aa32d8551b5fb7db08e0c8e442b480.tar.gz
Cleanup: return cylinder from cylinder_start() in parser
Most callers of this function accessed the newly generated cylinder immediately after calling this function. Thus, for convenience, return the added cylinder. This avoids a number of verbose expressions. On the flip side, cylinder_start() now has to be cast to function returning void in a the "nesting" function table. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/parse.h')
-rw-r--r--core/parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/parse.h b/core/parse.h
index a36ca0e61..23b9d5af4 100644
--- a/core/parse.h
+++ b/core/parse.h
@@ -101,7 +101,7 @@ void trip_start(struct parser_state *state);
void trip_end(struct parser_state *state);
void picture_start(struct parser_state *state);
void picture_end(struct parser_state *state);
-void cylinder_start(struct parser_state *state);
+cylinder_t *cylinder_start(struct parser_state *state);
void cylinder_end(struct parser_state *state);
void ws_start(struct parser_state *state);
void ws_end(struct parser_state *state);