Skip to content

Commit 964fa8d

Browse files
committed
Fix clippy errors
1 parent b0e0dcf commit 964fa8d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
runs-on: ubuntu-latest
7676
strategy:
7777
matrix:
78-
rust: ["1.42.0", "stable"]
78+
rust: ["stable"]
7979
# rust: ["1.42.0", "stable", "beta", "nightly"]
8080
name: Clippy (${{ matrix.rust }})
8181
steps:

pikelet/src/pass/core_to_surface.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
//! Distill the core language into the surface language.
22
3+
#![allow(clippy::reversed_empty_ranges)]
4+
35
use std::collections::HashMap;
46

57
use crate::lang::core::{Constant, Globals, Locals, Term, UniverseLevel, UniverseOffset};

0 commit comments

Comments
 (0)