mirror of
https://github.com/rust-windowing/winit.git
synced 2026-08-31 05:40:04 -04:00
Fix compile error in xbuild-target
Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -95,7 +95,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Install LLVM tools for Android
|
- name: Install LLVM tools for Android
|
||||||
if: contains(matrix.platform.target, 'android')
|
if: contains(matrix.platform.target, 'android')
|
||||||
run: sudo apt-get install llvm lld lldb clang clang++
|
run: sudo apt-get install lld llvm
|
||||||
|
|
||||||
- name: Check documentation
|
- name: Check documentation
|
||||||
run: cargo doc --no-deps $OPTIONS --document-private-items
|
run: cargo doc --no-deps $OPTIONS --document-private-items
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
fn main() {
|
fn main() {
|
||||||
winit::event_loop::EventLoop::new()
|
winit::event_loop::EventLoop::new()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
.run(|_, _, _| todo!())
|
.run(|_, _| todo!())
|
||||||
.ok();
|
.ok();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user