diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b662b4ed..a912e790d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/xbuild-target/src/main.rs b/xbuild-target/src/main.rs index 8fe5d3ea1..91b390c63 100644 --- a/xbuild-target/src/main.rs +++ b/xbuild-target/src/main.rs @@ -1,6 +1,6 @@ fn main() { winit::event_loop::EventLoop::new() .unwrap() - .run(|_, _, _| todo!()) + .run(|_, _| todo!()) .ok(); }