diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-24 03:38:27 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-24 03:38:27 +0000 |
commit | 6d8f56f4799042c897831318326d8be55a879cb8 (patch) | |
tree | d8c11f9bfbfe1ff62475284a28b164df77b88c87 /lib/Index/Entity.cpp | |
parent | 8c4859ad8a60388f09d641b88f9444ccc6c2f31b (diff) |
Constify methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76939 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Index/Entity.cpp')
-rw-r--r-- | lib/Index/Entity.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Index/Entity.cpp b/lib/Index/Entity.cpp index 25061e6150..85b4f2e196 100644 --- a/lib/Index/Entity.cpp +++ b/lib/Index/Entity.cpp @@ -145,7 +145,7 @@ std::string EntityImpl::getPrintableName() { Entity::Entity(Decl *D) : Val(D->getCanonicalDecl()) { } /// \brief Find the Decl that can be referred to by this entity. -Decl *Entity::getDecl(ASTContext &AST) { +Decl *Entity::getDecl(ASTContext &AST) const { if (isInvalid()) return 0; |