Skip to content

Commit

Permalink
run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
BramOtte authored and StackDoubleFlow committed Jan 7, 2025
1 parent c98bc6d commit f618a10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/core/src/plot/monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ impl TimingsMonitor {
pub fn tick(&self) {
self.data.ticks_passed.fetch_add(1, Ordering::Relaxed);
}

pub fn tickn(&self, ticks: u64) {
self.data.ticks_passed.fetch_add(ticks, Ordering::Relaxed);
}
Expand Down
2 changes: 1 addition & 1 deletion crates/redpiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ impl Compiler {
pub fn tick(&mut self) {
self.backend().tick();
}

pub fn tickn(&mut self, ticks: u64) {
self.backend().tickn(ticks);
}
Expand Down

0 comments on commit f618a10

Please sign in to comment.