Skip to content

Commit

Permalink
Do not provide a parse_quote macro when printing feature is off
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Mar 14, 2023
1 parent d36cc08 commit aa6c436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -430,7 +430,7 @@ pub mod parse;
pub mod parse_macro_input;

// Not public API except the `parse_quote!` macro.
#[cfg(feature = "parsing")]
#[cfg(all(feature = "parsing", feature = "printing"))]
#[doc(hidden)]
pub mod parse_quote;

Expand Down

0 comments on commit aa6c436

Please sign in to comment.