From 954a336d92c278227525ee174e25d196f7a328b2 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sat, 16 Apr 2022 16:24:29 +0200 Subject: [PATCH] Fortran side does not support tags (i.e. 'type hints') --- src/C_routines.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/C_routines.c b/src/C_routines.c index 3a1db91a0..a25fde688 100644 --- a/src/C_routines.c +++ b/src/C_routines.c @@ -88,7 +88,7 @@ void inflate_c(const uLong *s_deflated, const uLong *s_inflated, const Byte defl #ifdef FYAML void to_flow_c(char **flow, int* length_flow, const char *mixed){ struct fy_document *fyd = NULL; - enum fy_emitter_cfg_flags emit_flags = FYECF_MODE_FLOW_ONELINE | FYECF_STRIP_LABELS | FYECF_STRIP_DOC; + enum fy_emitter_cfg_flags emit_flags = FYECF_MODE_FLOW_ONELINE | FYECF_STRIP_LABELS | FYECF_STRIP_TAGS |FYECF_STRIP_DOC; fyd = fy_document_build_from_string(NULL, mixed, -1); if (!fyd) {