diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2025-02-19 15:03:38 -0500 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2025-02-19 15:03:41 -0500 |
commit | 48fc249d6c82062b87db0dead5204d09e79edda8 (patch) | |
tree | 5944fedd91aacaa9f0503e1a55702fcc80074b80 /org/ocda_functions.org | |
parent | org, touch, minor (diff) |
document (metadata & abstraction) struct
- struct replaces tuple
- some direct naming of structs returned
(instead of use of auto) - minor
Diffstat (limited to 'org/ocda_functions.org')
-rw-r--r-- | org/ocda_functions.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org/ocda_functions.org b/org/ocda_functions.org index 120c3e3..ffbecb6 100644 --- a/org/ocda_functions.org +++ b/org/ocda_functions.org @@ -3899,7 +3899,7 @@ ST_the_section build_the_glossary_section( } } else { // para { - auto _get = line.flow_para_match_(an_object, an_object_key, indent, bullet, pith, line_occur); + ST_flow_para_match _get = line.flow_para_match_(an_object, an_object_key, indent, bullet, pith, line_occur); { an_object = _get.this_object; an_object_key = _get.this_object_key; @@ -4206,7 +4206,7 @@ ST_the_section build_the_blurb_section(Opt) ( tag_assoc[comp_obj_.tags.segment_anchor_tag_epub]["seg_lv1to4"] = comp_obj_.tags.segment_anchor_tag_epub; } else if (!(line.empty)) { { - auto _get = line.flow_para_match_(an_object, an_object_key, indent, bullet, pith, line_occur); + ST_flow_para_match _get = line.flow_para_match_(an_object, an_object_key, indent, bullet, pith, line_occur); { an_object = _get.this_object; an_object_key = _get.this_object_key; |