Skip to content

Commit

Permalink
Update static_assert.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
alex authored May 25, 2022
1 parent 7f1f62a commit c59939b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/kernel/static_assert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
#[macro_export]
macro_rules! static_assert {
($condition:expr) => {
const _: () = assert!($condition);
const _: () = core::assert!($condition);
};
}

0 comments on commit c59939b

Please sign in to comment.