This commit is contained in:
harupy 2023-01-04 13:19:23 +09:00
parent 72185fecd5
commit 89ff74457e

View file

@ -67,7 +67,7 @@ impl Location {
+ offset
.try_into()
.expect("offset should be able to convert to isize")) as u32;
Location {
Self {
row: self.row,
column,
}
@ -81,7 +81,7 @@ impl Location {
+ offset
.try_into()
.expect("offset should be able to convert to isize")) as u32;
Location {
Self {
row,
column: self.column,
}