We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1899635 + f8ead51 commit 5830f6bCopy full SHA for 5830f6b
.github/workflows/rust.yml
@@ -13,7 +13,12 @@ jobs:
13
build:
14
15
runs-on: ubuntu-latest
16
-
+ strategy:
17
+ matrix:
18
+ rust:
19
+ - stable
20
+ - nightly
21
+ - 1.52.1 # MSVR
22
steps:
23
- uses: actions/checkout@v2
24
- name: Build
@@ -26,6 +31,10 @@ jobs:
26
31
style_checks:
27
32
28
33
34
35
36
37
29
38
30
39
40
multiboot2/src/lib.rs
@@ -224,7 +224,7 @@ impl BootInformation {
224
/// Search for the VBE framebuffer tag.
225
pub fn framebuffer_tag(&self) -> Option<FramebufferTag> {
226
self.get_tag(TagType::Framebuffer)
227
- .map(|tag| framebuffer::framebuffer_tag(tag))
+ .map(framebuffer::framebuffer_tag)
228
}
229
230
/// Search for the EFI 32-bit SDT tag.
0 commit comments