[clang] NFC: Add a missing const qualifier to Decl::isLocalExternDecl().

This commit is contained in:
Tom Honermann 2022-07-22 20:17:32 -07:00
parent 47b76631e7
commit 8d03328e7b
1 changed files with 1 additions and 1 deletions

View File

@ -1128,7 +1128,7 @@ public:
/// Determine whether this is a block-scope declaration with linkage.
/// This will either be a local variable declaration declared 'extern', or a
/// local function declaration.
bool isLocalExternDecl() {
bool isLocalExternDecl() const {
return IdentifierNamespace & IDNS_LocalExtern;
}