From 9575ef30ac315be625a2ef377222f10c9982048f Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Mon, 2 Oct 2023 13:19:14 -0400 Subject: [PATCH] Fix compilation. --- src/parser/headline.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser/headline.rs b/src/parser/headline.rs index 753c72d..3868362 100644 --- a/src/parser/headline.rs +++ b/src/parser/headline.rs @@ -107,6 +107,7 @@ pub(crate) fn detect_headline<'s>(input: OrgSource<'s>) -> Res, () /// Fields from a not-yet-fully-parsed Headline. /// /// This struct exists to give names to the fields of a partially-parsed Headline to avoid returning a large tuple of nameless fields. +#[derive(Debug)] struct PreHeadline<'s> { headline_level: HeadlineLevel, star_count: HeadlineLevel,