Perthings: derive PartialOrd and Ord under no_std. (#4309)

This commit is contained in:
Shaopeng Wang
2019-12-06 21:52:42 +13:00
committed by Gavin Wood
parent 5e664ede13
commit c2e6b91794
@@ -27,8 +27,8 @@ macro_rules! implement_per_thing {
/// A fixed point representation of a number between in the range [0, 1].
///
#[doc = $title]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize, Ord, PartialOrd))]
#[derive(Encode, Decode, Default, Copy, Clone, PartialEq, Eq, RuntimeDebug, CompactAs)]
#[cfg_attr(feature = "std", derive(Serialize, Deserialize))]
#[derive(Encode, Decode, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, RuntimeDebug, CompactAs)]
pub struct $name($type);
impl $name {