Fix more warnings

This commit is contained in:
Sofia 2025-08-05 22:03:14 +03:00
parent 3cd4121951
commit 8cbc65422e
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ use std::{
};
use crate::{
CmpPredicate, Context, Instr, InstructionData, TerminatorKind, Type,
CmpPredicate, Context, Instr, InstructionData, TerminatorKind,
builder::*,
debug_information::{
DebugArrayType, DebugBasicType, DebugFieldType, DebugInformation, DebugLocalVariable, DebugLocation,

View File

@ -217,7 +217,7 @@ impl AnalysisState {
#[derive(Debug, Clone)]
pub struct Symbol {
pub kind: SemanticKind,
pub definition: usize,
pub _definition: usize,
}
pub struct AnalysisScope<'a> {