Fix compile error in xbuild-target

Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley
2023-09-10 13:54:46 -07:00
parent 8671481db4
commit 0c4e725692
2 changed files with 2 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ jobs:
- name: Install LLVM tools for 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
run: cargo doc --no-deps $OPTIONS --document-private-items

View File

@@ -1,6 +1,6 @@
fn main() {
winit::event_loop::EventLoop::new()
.unwrap()
.run(|_, _, _| todo!())
.run(|_, _| todo!())
.ok();
}