trustme 1.0.1

Tell the compiler that you can be trusted to write unsafe code!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tell the compiler that you can be trusted.
//! No more errors about unsafe code - just tell the compiler to trust you via the [`trustme`] macro and it will get off your nerves!

/// Convince the compiler to let you write unsafe code.
#[macro_export]
macro_rules! trustme {
    ($($tok:tt)*) => {
        unsafe {
            $($tok)*
        }
    }
}