diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-11 20:32:41 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-11 20:32:41 +0000 |
commit | 06d8c60e37cd8cfdff1bf73ec8d58c2373cfd8f1 (patch) | |
tree | d8e6df2bf954e8a9508d1e28bee6c5b6233a1e1b /lib/Sema/SemaCodeComplete.cpp | |
parent | 294ddc63398f2c9435fcfbdb4da4ac3a23c1cbba (diff) |
Constify parameter of clang::getCursorKindForDecl
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@172249 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | lib/Sema/SemaCodeComplete.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaCodeComplete.cpp b/lib/Sema/SemaCodeComplete.cpp index a23fdb140a..8d7a340952 100644 --- a/lib/Sema/SemaCodeComplete.cpp +++ b/lib/Sema/SemaCodeComplete.cpp @@ -2828,7 +2828,7 @@ unsigned clang::getMacroUsagePriority(StringRef MacroName, return Priority; } -CXCursorKind clang::getCursorKindForDecl(Decl *D) { +CXCursorKind clang::getCursorKindForDecl(const Decl *D) { if (!D) return CXCursor_UnexposedDecl; @@ -2888,7 +2888,7 @@ CXCursorKind clang::getCursorKindForDecl(Decl *D) { return CXCursor_ModuleImportDecl; default: - if (TagDecl *TD = dyn_cast<TagDecl>(D)) { + if (const TagDecl *TD = dyn_cast<TagDecl>(D)) { switch (TD->getTagKind()) { case TTK_Interface: // fall through case TTK_Struct: return CXCursor_StructDecl; |