From 2223f7480cc585b7164094d16b10970fba734fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Walter?= Date: Thu, 28 Sep 2023 17:04:23 +0700 Subject: [PATCH] Fix build --- genco-macros/src/fake.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/genco-macros/src/fake.rs b/genco-macros/src/fake.rs index 30f5158..f3edbed 100644 --- a/genco-macros/src/fake.rs +++ b/genco-macros/src/fake.rs @@ -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, }) } @@ -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, }) }