Skip to content
Snippets Groups Projects
Commit 1d277837 authored by Ashley's avatar Ashley Committed by GitHub
Browse files

Consistently use `I::from(Self::get())` in `parameter_types!` (#9526)

parent a2f75241
Branches
No related merge requests found
......@@ -359,7 +359,6 @@ macro_rules! parameter_types {
(IMPL_CONST $name:ident, $type:ty, $value:expr) => {
impl $name {
/// Returns the value of this parameter type.
#[allow(unused)]
pub const fn get() -> $type {
$value
}
......@@ -367,14 +366,13 @@ macro_rules! parameter_types {
impl<I: From<$type>> $crate::traits::Get<I> for $name {
fn get() -> I {
I::from($value)
I::from(Self::get())
}
}
};
(IMPL $name:ident, $type:ty, $value:expr) => {
impl $name {
/// Returns the value of this parameter type.
#[allow(unused)]
pub fn get() -> $type {
$value
}
......@@ -382,7 +380,7 @@ macro_rules! parameter_types {
impl<I: From<$type>> $crate::traits::Get<I> for $name {
fn get() -> I {
I::from($value)
I::from(Self::get())
}
}
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment