Reduce build warnings

This commit is contained in:
2025-12-28 01:34:46 +09:00
parent b104d6af5f
commit 0269fc2ed4
41 changed files with 77 additions and 26 deletions

View File

@ -23,6 +23,7 @@ use crate::mir::loop_pattern_detection::{LoopFeatures, LoopPatternKind};
/// 1. Create with `new()` - AST + Router info only
/// 2. Call `set_canonicalizer_result()` - Add Canonicalizer output
/// 3. Call `verify_parity()` - Check consistency (dev-only)
#[allow(dead_code)]
#[derive(Debug)]
pub struct LoopProcessingContext<'a> {
// ========================================================================
@ -56,6 +57,7 @@ pub struct LoopProcessingContext<'a> {
pub features: LoopFeatures,
}
#[allow(dead_code)]
impl<'a> LoopProcessingContext<'a> {
/// Create new context (canonicalizer not run yet)
///