Skip to content

Commit

Permalink
fix: allow using multiple rwh features at the same time (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored Nov 7, 2023
1 parent c0278d8 commit cef17e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,11 @@
#![deny(rustdoc::broken_intra_doc_links)]

#[cfg(feature = "rwh_04")]
pub use rwh_04 as raw_window_handle;
pub use rwh_04;
#[cfg(feature = "rwh_05")]
pub use rwh_05 as raw_window_handle;
pub use rwh_05;
#[cfg(feature = "rwh_06")]
pub use rwh_06 as raw_window_handle;
pub use rwh_06;

#[allow(unused_imports)]
#[macro_use]
Expand Down

0 comments on commit cef17e4

Please sign in to comment.