mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
7 lines
148 B
Rust
7 lines
148 B
Rust
#[allow(unused_macros)]
|
|
macro_rules! os_error {
|
|
($error:expr) => {{
|
|
winit_core::error::OsError::new(line!(), file!(), $error)
|
|
}};
|
|
}
|