Skip to content

Commit

Permalink
Fmt issues
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Sep 6, 2024
1 parent e9ae000 commit 689a086
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compiler/qsc_qasm3/src/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ impl From<SymbolId> for usize {
impl From<usize> for SymbolId {
fn from(value: usize) -> Self {
SymbolId(
value.try_into().unwrap_or_else(|_| {
panic!("Value, {value}, does not fit into SymbolId")
}),
value
.try_into()
.unwrap_or_else(|_| panic!("Value, {value}, does not fit into SymbolId")),
)
}
}
Expand Down

0 comments on commit 689a086

Please sign in to comment.