Remove an unused macro branch
Signed-off-by: Chris Hennick <4961925+Pr0methean@users.noreply.github.com>
This commit is contained in:
parent
01bb162456
commit
3af70176e3
1 changed files with 0 additions and 3 deletions
|
@ -169,9 +169,6 @@ macro_rules! to_le {
|
|||
($obj:ident, $field:ident, $type:ty) => {
|
||||
$obj.$field = <$type>::to_le($obj.$field);
|
||||
};
|
||||
($obj:ident, [($field:ident, $type:ty) $(,)?]) => {
|
||||
to_le![$obj, $field, $type];
|
||||
};
|
||||
($obj:ident, [($field:ident, $type:ty), $($rest:tt),+ $(,)?]) => {
|
||||
to_le![$obj, $field, $type];
|
||||
to_le!($obj, [$($rest),+]);
|
||||
|
|
Loading…
Add table
Reference in a new issue