We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b504d39 commit 24ef4a1Copy full SHA for 24ef4a1
src/precedence/mod.rs
@@ -1,10 +1,10 @@
1
//! Combinators to parse expressions with operator precedence.
2
+#![cfg(feature="alloc")]
3
4
#[cfg(test)]
5
mod tests;
6
7
use crate::error::{ErrorKind, FromExternalError, ParseError};
-#[cfg(feature = "alloc")]
8
use crate::lib::std::vec::Vec;
9
use crate::{Err, IResult, Parser};
10
0 commit comments