Skip to content
Snippets Groups Projects
Commit 1a1300e8 authored by guanqun's avatar guanqun Committed by Bastian Köcher
Browse files

remove unused nodecode in impl_stubs (#895)

parent 12f12bff
Branches
No related merge requests found
...@@ -16,9 +16,9 @@ use runtime_io::{ ...@@ -16,9 +16,9 @@ use runtime_io::{
}; };
macro_rules! impl_stubs { macro_rules! impl_stubs {
( $( $new_name:ident $($nodecode:ident)* => $invoke:expr ),* ) => { ( $( $new_name:ident => $invoke:expr ),* ) => {
$( $(
impl_stubs!(@METHOD $new_name $($nodecode)* => $invoke); impl_stubs!(@METHOD $new_name => $invoke);
)* )*
}; };
( @METHOD $new_name:ident => $invoke:expr ) => { ( @METHOD $new_name:ident => $invoke:expr ) => {
......
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