Only include sexp module if compare feature is enabled.
rust-test Build rust-test has succeeded Details
rust-build Build rust-build has succeeded Details
rust-foreign-document-test Build rust-foreign-document-test has succeeded Details

This commit is contained in:
Tom Alexander 2023-09-11 14:59:07 -04:00
parent 84953c1669
commit cf383fa394
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ pub(crate) enum ContextElement<'r, 's> {
ConsumeTrailingWhitespace(bool),
/// This is just here to use the 's lifetime until I'm sure we can eliminate it from ContextElement.
#[allow(dead_code)]
Placeholder(PhantomData<&'s str>),
}

View File

@ -37,6 +37,7 @@ mod property_drawer;
mod radio_link;
mod regular_link;
mod section;
#[cfg(feature = "compare")]
pub mod sexp;
mod statistics_cookie;
mod subscript_and_superscript;