Adjust a few Invalid comparisons to use is_valid (#3583)

Deliberately not touching the case that came up from #3575
This commit is contained in:
Jon Ross-Perkins
2024-01-10 00:21:27 +00:00
committed by GitHub
parent f5c34d62dd
commit 5d0465d43c
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ auto DeclNameStack::LookupOrAddName(NameContext name_context,
return name_context.resolved_inst_id;
case NameContext::State::Unresolved:
if (name_context.target_scope_id == SemIR::NameScopeId::Invalid) {
if (!name_context.target_scope_id.is_valid()) {
context_->AddNameToLookup(name_context.parse_node,
name_context.unresolved_name_id, target_id);
} else {