Allow IgnoreParent to be dead code.

This commit is contained in:
Tom Alexander 2023-03-21 13:44:22 -04:00
parent 77d8c5e029
commit cee12b7512
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 1 additions and 0 deletions

View File

@ -117,6 +117,7 @@ pub struct PreviousElementNode<'r> {
#[derive(Clone)]
pub enum ChainBehavior<'r> {
AndParent(Option<&'r Matcher>),
#[allow(dead_code)]
IgnoreParent(Option<&'r Matcher>),
}