1066: Fix warning of uninitialized delim_id variable r=CohenArthur a=CohenArthur



Co-authored-by: CohenArthur <arthur.cohen@epita.fr>
This commit is contained in:
bors[bot] 2022-03-27 14:15:10 +00:00 committed by GitHub
commit 729bbacbd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -241,6 +241,9 @@ peculiar_fragment_match_compatible (const AST::MacroMatchFragment &last_match,
case AST::CURLY:
delim_id = LEFT_CURLY;
break;
default:
gcc_unreachable ();
break;
}
if (contains (allowed_toks, delim_id))
return true;