diff options
author | 2021-12-31 17:48:51 +0000 | |
---|---|---|
committer | 2021-12-31 17:48:51 +0000 | |
commit | e62dee61f41df76922ee13a830a24bbec2f932f5 (patch) | |
tree | 7ffcad44fe62db0117632bf41a32304170920097 /src/peripheral | |
parent | e3d321b2d6e4b7bc5bba8250a12573f6822c15d6 (diff) | |
download | cortex-m-e62dee61f41df76922ee13a830a24bbec2f932f5.tar.gz cortex-m-e62dee61f41df76922ee13a830a24bbec2f932f5.tar.zst cortex-m-e62dee61f41df76922ee13a830a24bbec2f932f5.zip |
Rename std-map feature to std before releasing it, to align with the rename in v0.8
Diffstat (limited to 'src/peripheral')
-rw-r--r-- | src/peripheral/scb.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peripheral/scb.rs b/src/peripheral/scb.rs index b61c4ff..eeea0c5 100644 --- a/src/peripheral/scb.rs +++ b/src/peripheral/scb.rs @@ -197,7 +197,7 @@ impl SCB { /// Processor core exceptions (internal interrupts) #[derive(Clone, Copy, Debug, Eq, PartialEq)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[cfg_attr(feature = "std-map", derive(PartialOrd, Hash))] +#[cfg_attr(feature = "std", derive(PartialOrd, Hash))] pub enum Exception { /// Non maskable interrupt NonMaskableInt, @@ -264,7 +264,7 @@ impl Exception { /// Active exception number #[derive(Clone, Copy, Debug, Eq, PartialEq)] #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))] -#[cfg_attr(feature = "std-map", derive(PartialOrd, Hash))] +#[cfg_attr(feature = "std", derive(PartialOrd, Hash))] pub enum VectActive { /// Thread mode ThreadMode, |