diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-26 06:49:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-26 06:49:43 +0000 |
commit | 985abd958d83e4f109a15451440f1d008ae45f59 (patch) | |
tree | c27633fe0835f44b2ce51e81a8f7621e2c9cc42f /lib/Sema/SemaType.cpp | |
parent | d546fc5f2072d93bb475fdd76cd7b629a08ad93b (diff) |
Make Declarator::getDeclSpec() return a const reference to avoid
cases where mutation can introduce bugs. Propagate around 'const'.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@52772 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaType.cpp')
-rw-r--r-- | lib/Sema/SemaType.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index b8e20e45be..9d6bcb9b07 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -563,7 +563,7 @@ QualType Sema::HandleAddressSpaceTypeAttribute(QualType Type, /// HandleModeTypeAttribute - Process a mode attribute on the /// specified type. QualType Sema::HandleModeTypeAttribute(QualType Type, - AttributeList *Attr) { + const AttributeList *Attr) { // This attribute isn't documented, but glibc uses it. It changes // the width of an int or unsigned int to the specified size. |