Fix no-std build.
This commit is contained in:
parent
0d2e3d82f3
commit
1011602cf6
@ -299,7 +299,10 @@ impl From<Stmt> for StmtBlock {
|
|||||||
|
|
||||||
impl IntoIterator for StmtBlock {
|
impl IntoIterator for StmtBlock {
|
||||||
type Item = Stmt;
|
type Item = Stmt;
|
||||||
|
#[cfg(not(feature = "no_std"))]
|
||||||
type IntoIter = smallvec::IntoIter<[Stmt; 8]>;
|
type IntoIter = smallvec::IntoIter<[Stmt; 8]>;
|
||||||
|
#[cfg(feature = "no_std")]
|
||||||
|
type IntoIter = smallvec::IntoIter<[Stmt; 3]>;
|
||||||
|
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
fn into_iter(self) -> Self::IntoIter {
|
fn into_iter(self) -> Self::IntoIter {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user