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 /include/clang/Sema | |
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 'include/clang/Sema')
-rw-r--r-- | include/clang/Sema/CodeCompleteConsumer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/CodeCompleteConsumer.h b/include/clang/Sema/CodeCompleteConsumer.h index e5bc711811..2eb9170369 100644 --- a/include/clang/Sema/CodeCompleteConsumer.h +++ b/include/clang/Sema/CodeCompleteConsumer.h @@ -138,7 +138,7 @@ unsigned getMacroUsagePriority(StringRef MacroName, /// \brief Determine the libclang cursor kind associated with the given /// declaration. -CXCursorKind getCursorKindForDecl(Decl *D); +CXCursorKind getCursorKindForDecl(const Decl *D); class FunctionDecl; class FunctionType; |