macro_rules! declare_constant {
(
$name:ident : $type:ty
) => { ... };
}
Expand description
Helper macro to let us redeclare gimli’s constants as our own constants with a different type, with less risk of copy-paste errors.
macro_rules! declare_constant {
(
$name:ident : $type:ty
) => { ... };
}
Helper macro to let us redeclare gimli’s constants as our own constants with a different type, with less risk of copy-paste errors.