Skip to content

Commit

Permalink
调整部分代码格式。
Browse files Browse the repository at this point in the history
  • Loading branch information
icycrystal4 committed Nov 7, 2023
1 parent 5ec1ba7 commit 1319dcd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion log/src/disable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
macro_rules! noop{
($($arg:tt)+) => {
{
let _ = &format_args!($($arg)+);
let _ = format_args!($($arg)+);
()
}
};
Expand Down
4 changes: 1 addition & 3 deletions rt/src/timeout.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
use std::task::{ready, Context, Poll};

use ds::time::{interval, Interval};

use ds::time::Duration;
use ds::time::{interval, Duration, Interval};

use super::entry::ReEnter;

Expand Down

0 comments on commit 1319dcd

Please sign in to comment.