Skip to content

Commit fcaec68

Browse files
committed
Remove unnecessary trait bound.
1 parent df70529 commit fcaec68

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jaq-core/src/compile.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,7 @@ pub struct Compiler<S, F> {
213213
errs: Vec<Error<S>>,
214214
}
215215

216-
// TODO: remove S: Default
217-
impl<S: Default, F> Default for Compiler<S, F> {
216+
impl<S, F> Default for Compiler<S, F> {
218217
fn default() -> Self {
219218
Self {
220219
lut: Lut::default(),

0 commit comments

Comments
 (0)