Fix macro_unroll test

This commit is contained in:
J Henry Waugh 2020-08-12 23:40:50 -05:00
parent 28572544d8
commit 1a2ef7b531

View File

@ -33,9 +33,9 @@ macro_rules! register_in_bulk {
$(
{
let type_str = stringify!($type_names);
register_exported_fn!($mod_name,
format!(concat!(stringify!($op_name), "_{}"), type_str),
crate::$op_name::$type_names::op);
set_exported_fn!($mod_name,
format!(concat!(stringify!($op_name), "_{}"), type_str),
crate::$op_name::$type_names::op);
}
)*
}