Skip to content

Instantly share code, notes, and snippets.

@mmilata
Created October 2, 2023 16:16
Show Gist options
  • Save mmilata/92162f303ca330d1139befa66fb39307 to your computer and use it in GitHub Desktop.
Save mmilata/92162f303ca330d1139befa66fb39307 to your computer and use it in GitHub Desktop.
macro_rules! dump_size {
($x:ty $(,)?) => {
const size: usize = core::mem::size_of::<$x>();
#[allow(unknown_lints, eq_op)]
const _: [(); 0 - size] = [];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment