Skip to content

Commit

Permalink
Add static bound
Browse files Browse the repository at this point in the history
  • Loading branch information
aclysma committed Oct 14, 2024
1 parent c69d6ed commit 3acabc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions profiling/src/type_check_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#[macro_export]
macro_rules! scope {
($name:literal) => {
let _: &str = $name;
let _: &'static str = $name;
};
($name:literal, $data:expr) => {
let _: &str = $name;
let _: &'static str = $name;
let _: &str = $data;
};
}
Expand Down

0 comments on commit 3acabc4

Please sign in to comment.