[clang] 8d03328 - [clang] NFC: Add a missing const qualifier to Decl::isLocalExternDecl().
Tom Honermann via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 8 13:27:56 PDT 2022
Author: Tom Honermann
Date: 2022-09-08T13:21:10-07:00
New Revision: 8d03328e7be4778f8b5d5f3ea2f77b1f8b8ea38a
URL: https://github.com/llvm/llvm-project/commit/8d03328e7be4778f8b5d5f3ea2f77b1f8b8ea38a
DIFF: https://github.com/llvm/llvm-project/commit/8d03328e7be4778f8b5d5f3ea2f77b1f8b8ea38a.diff
LOG: [clang] NFC: Add a missing const qualifier to Decl::isLocalExternDecl().
Added:
Modified:
clang/include/clang/AST/DeclBase.h
Removed:
################################################################################
diff --git a/clang/include/clang/AST/DeclBase.h b/clang/include/clang/AST/DeclBase.h
index 1c4e726817bb..328d28c08bcc 100644
--- a/clang/include/clang/AST/DeclBase.h
+++ b/clang/include/clang/AST/DeclBase.h
@@ -1128,7 +1128,7 @@ class alignas(8) Decl {
/// 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;
}
More information about the cfe-commits
mailing list