You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Move InternalEventFilter into tests mod
This is only used in test code, so should be defined there
* Remove winapi feature flag checks
These checks were impossible to trigger as there is no separate feature
flag for winapi and crossterm_winapi. The windows feature flag
automatically enables these dependencies.
* Fix clippy lints for byte char slices
https://rust-lang.github.io/rust-clippy/master/index.html\#byte_char_slices
Copy file name to clipboardExpand all lines: src/lib.rs
-6
Original file line number
Diff line number
Diff line change
@@ -252,9 +252,3 @@ pub(crate) mod macros;
252
252
253
253
#[cfg(all(windows, not(feature = "windows")))]
254
254
compile_error!("Compiling on Windows with \"windows\" feature disabled. Feature \"windows\" should only be disabled when project will never be compiled on Windows.");
255
-
256
-
#[cfg(all(winapi, not(feature = "winapi")))]
257
-
compile_error!("Compiling on Windows with \"winapi\" feature disabled. Feature \"winapi\" should only be disabled when project will never be compiled on Windows.");
compile_error!("Compiling on Windows with \"crossterm_winapi\" feature disabled. Feature \"crossterm_winapi\" should only be disabled when project will never be compiled on Windows.");
0 commit comments