aboutsummaryrefslogtreecommitdiffstats
path: root/src/sectionizer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/sectionizer.rs')
-rw-r--r--src/sectionizer.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sectionizer.rs b/src/sectionizer.rs
index c9cfcd5..8c5e238 100644
--- a/src/sectionizer.rs
+++ b/src/sectionizer.rs
@@ -6,6 +6,7 @@ use std::path::{Path, PathBuf};
pub struct Section {
pub tokens: Vec<PlacedToken>,
pub path: PathBuf,
+ pub faulty: bool,
}
impl Section {
@@ -13,6 +14,7 @@ impl Section {
Self {
tokens: Vec::from(tokens),
path,
+ faulty: false,
}
}
}