Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gavrilikhin-d committed May 12, 2024
1 parent 47088e7 commit ea92d79
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hir/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::{
};

use crate::{
mutability::Mutable, named::Named, semantics::ReplaceSelf, syntax::Identifier,
mutability::Mutable, named::Named, syntax::Identifier,
AddSourceLocation,
};

Expand Down
1 change: 0 additions & 1 deletion src/semantics/contexts/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::fmt::Display;
use crate::{
compilation::Compiler,
hir::{Function, FunctionData, FunctionNamePart, ModuleData, SelfType, Type, Typed},
named::Named,
semantics::{AddDeclaration, ConvertibleTo, FindDeclaration, Implements},
};

Expand Down
2 changes: 1 addition & 1 deletion src/semantics/link_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use derive_visitor::{DriveMut, VisitorMut};
use log::debug;

use crate::{
hir::{Call, FunctionData, Generic, ModuleData, Type},
hir::{Call, FunctionData, Generic, ModuleData},
semantics::{GenericContext, Monomorphize},
DataHolder,
};
Expand Down

0 comments on commit ea92d79

Please sign in to comment.