Author: Raphael Isemann Date: 2020-12-03T00:08:19+01:00 New Revision: c49e71805142ac3a27a5567ce516890e9243b34e
URL: https://github.com/llvm/llvm-project/commit/c49e71805142ac3a27a5567ce516890e9243b34e DIFF: https://github.com/llvm/llvm-project/commit/c49e71805142ac3a27a5567ce516890e9243b34e.diff LOG: [lldb][NFC] Make DeclOrigin::Valid() const Added: Modified: lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.h Removed: ################################################################################ diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.h b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.h index b8c751479d4b..bf4ad174cf9c 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.h +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTImporter.h @@ -160,7 +160,7 @@ class ClangASTImporter { decl = rhs.decl; } - bool Valid() { return (ctx != nullptr || decl != nullptr); } + bool Valid() const { return (ctx != nullptr || decl != nullptr); } clang::ASTContext *ctx; clang::Decl *decl; _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits