Get language and project compiling

This commit is contained in:
Nathan Sobo 2021-10-25 09:26:36 -06:00
parent 60a8e74430
commit ab4f90a20a
4 changed files with 36 additions and 39 deletions

View file

@ -2466,3 +2466,9 @@ impl ToPoint for usize {
content.into().visible_text.to_point(*self)
}
}
impl ToPoint for Point {
fn to_point<'a>(&self, _: impl Into<Content<'a>>) -> Point {
*self
}
}