Skip to content

Commit

Permalink
fixing cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
maebli committed Jul 7, 2024
1 parent cdafbb8 commit d5711bf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/user_data/data_information.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,6 @@ impl Data<'_> {
}
}

#[macro_use]
macro_rules! parse_single_or_every {
($input:expr, $mask:expr, $all_value:expr, $shift:expr) => {
if $input & $mask == $all_value {
Expand All @@ -403,7 +402,6 @@ macro_rules! parse_single_or_every {
};
}

#[macro_use]
macro_rules! parse_month {
($input:expr) => {
match $input & 0xF {
Expand All @@ -424,7 +422,6 @@ macro_rules! parse_month {
};
}

#[macro_use]
macro_rules! parse_year {
($input:expr, $mask_byte1:expr, $mask_byte2:expr, $all_value:expr) => {{
let year = ((u16::from($input[1] & $mask_byte1) >> 1)
Expand Down

0 comments on commit d5711bf

Please sign in to comment.