Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter committed Sep 28, 2023
1 parent ade67b8 commit 2223f74
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions genco-macros/src/fake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ impl LineColumn {
let span = span.unwrap().start();

Some(Self {
line: span.line(),
column: span.column(),
line: span.line,
column: span.column,
})
}

Expand All @@ -33,8 +33,8 @@ impl LineColumn {
let span = span.unwrap().end();

Some(Self {
line: span.line(),
column: span.column(),
line: span.line,
column: span.column,
})
}

Expand Down

0 comments on commit 2223f74

Please sign in to comment.