servo/components/webxr/openxr
Euclid Ye ad3018a921
webxr: Fix compile warning for Windows after upgrade to rustc 1.89 (#38780)
This is a follow up to
https://github.com/servo/servo/pull/36818#issuecomment-3135078567. Since
openxr is a feature only available on Windows, it was omitted.

Testing: Fixes
```
warning: hiding a lifetime that's elided elsewhere is confusing
   --> components\webxr\openxr\input.rs:366:9
    |
366 |         &self,
    |         ^^^^^ the lifetime is elided here
...
371 |     ) -> Vec<Binding> {
    |              ------- the same lifetime is hidden here
    |
    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
    |
371 |     ) -> Vec<Binding<'_>> {
```

Signed-off-by: Euclid Ye <euclid.ye@huawei.com>
2025-08-19 14:23:39 +00:00
..
graphics.rs Finish the integration of webxr into the Cargo workspace (#35229) 2025-01-31 16:41:57 +00:00
graphics_d3d11.rs tidy: Add a rule ensuring that // comments are followed by a space in Rust (#38698) 2025-08-18 12:09:09 +00:00
input.rs webxr: Fix compile warning for Windows after upgrade to rustc 1.89 (#38780) 2025-08-19 14:23:39 +00:00
interaction_profiles.rs Chore: Fix warnings for openxr (#38045) 2025-07-14 06:01:37 +00:00
mod.rs Chore: Fix warnings for openxr (#38045) 2025-07-14 06:01:37 +00:00