Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
preyasshah committed Jul 17, 2024
1 parent 3415072 commit 53d6b20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion martian-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/// TODO:
/// - Handle default values for FileType
/// - Repo wide reorganization
extern crate proc_macro;
use martian::{utils, MartianBlanketType, MartianPrimaryType, StageKind, Volatile, MARTIAN_TOKENS};
use quote::quote;
use std::collections::{HashMap, HashSet};
Expand Down
2 changes: 1 addition & 1 deletion martian/src/stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ struct GpuResource {
}

impl std::fmt::Display for GpuResource {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "gpu_count{}_mem{}", self.count, self.mem)
}
}
Expand Down

0 comments on commit 53d6b20

Please sign in to comment.