diff options
author | Daniel Dunbar <daniel@zuster.org> | 2008-10-14 20:22:44 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2008-10-14 20:22:44 +0000 |
commit | d7e6221878cb42c1a95a281f5084fcd097b0526e (patch) | |
tree | 899f6435be4ea0ef6d86417b3d59b8e75682fe4b | |
parent | 154d8e2280b82dbffea2565dec5b22cebb4ba7a9 (diff) |
Fix const qualifiers on ProtocolQualifierListTy.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57520 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Parse/DeclSpec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/DeclSpec.h b/include/clang/Parse/DeclSpec.h index cc20e21a1e..c929f08767 100644 --- a/include/clang/Parse/DeclSpec.h +++ b/include/clang/Parse/DeclSpec.h @@ -282,7 +282,7 @@ public: return AL; } - typedef Action::DeclTy *const * const ProtocolQualifierListTy; + typedef const Action::DeclTy * const * ProtocolQualifierListTy; ProtocolQualifierListTy getProtocolQualifiers() const { return ProtocolQualifiers; } |