Fortran side does not support tags (i.e. 'type hints')
This commit is contained in:
parent
3cc3229792
commit
954a336d92
|
@ -88,7 +88,7 @@ void inflate_c(const uLong *s_deflated, const uLong *s_inflated, const Byte defl
|
||||||
#ifdef FYAML
|
#ifdef FYAML
|
||||||
void to_flow_c(char **flow, int* length_flow, const char *mixed){
|
void to_flow_c(char **flow, int* length_flow, const char *mixed){
|
||||||
struct fy_document *fyd = NULL;
|
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);
|
fyd = fy_document_build_from_string(NULL, mixed, -1);
|
||||||
if (!fyd) {
|
if (!fyd) {
|
||||||
|
|
Loading…
Reference in New Issue