diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-01 11:17:13 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-01 11:17:13 +0200 |
commit | 09fd0321daae69d52532b4bef762a202efe9a12e (patch) | |
tree | 7fb7c25b1f6e39040b0026e64b6acd0f3e2b1e18 /src/compiler.rs | |
parent | 1b550fcd5123ff41efdb96be1f6e0dfe34f76de7 (diff) | |
download | markdown-rs-09fd0321daae69d52532b4bef762a202efe9a12e.tar.gz markdown-rs-09fd0321daae69d52532b4bef762a202efe9a12e.tar.bz2 markdown-rs-09fd0321daae69d52532b4bef762a202efe9a12e.zip |
Update todos
Diffstat (limited to 'src/compiler.rs')
-rw-r--r-- | src/compiler.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler.rs b/src/compiler.rs index acba76a..1f16648 100644 --- a/src/compiler.rs +++ b/src/compiler.rs @@ -226,6 +226,7 @@ type Handle = fn(&mut CompileContext); type Map = HashMap<TokenType, Handle>; /// Context used to compile markdown. +#[allow(clippy::struct_excessive_bools)] struct CompileContext<'a> { /// Static info. pub events: &'a [Event], |