core: satisfy argument comment lint

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Charles Cunningham
2026-03-22 01:10:09 -07:00
parent 2d169322c1
commit 5bffcae9e0
2 changed files with 4 additions and 2 deletions

View File

@@ -138,7 +138,9 @@ impl ContextManager {
pub(crate) fn new() -> Self {
Self {
items: Vec::new(),
token_info: TokenUsageInfo::new_or_append(&None, &None, None),
token_info: TokenUsageInfo::new_or_append(
&None, &None, /*model_context_window*/ None,
),
reference_turn_context_state: ReferenceTurnContextState::default(),
}
}

View File

@@ -77,7 +77,7 @@ impl SessionState {
Some(turn_context_item) => self
.history
.note_model_visible_turn_context(turn_context_item),
None => self.history.set_reference_context_item(None),
None => self.history.set_reference_context_item(/*item*/ None),
}
}