Skip to content

Commit

Permalink
Fix old macro ref
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Sep 6, 2024
1 parent f602b08 commit e9ae000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/qsc_qasm3/src/symbols.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl From<usize> for SymbolId {
fn from(value: usize) -> Self {
SymbolId(
value.try_into().unwrap_or_else(|_| {
panic!("Value, {value}, does not fit into {}", stringify!($id))
panic!("Value, {value}, does not fit into SymbolId")
}),
)
}
Expand Down

0 comments on commit e9ae000

Please sign in to comment.