[cfe-commits] r163477 - in /cfe/trunk: include/clang/AST/ASTContext.h lib/AST/ASTContext.cpp
Abramo Bagnara
abramo.bagnara at bugseng.com
Sun Sep 9 03:21:24 PDT 2012
Author: abramo
Date: Sun Sep 9 05:21:24 2012
New Revision: 163477
URL: http://llvm.org/viewvc/llvm-project?rev=163477&view=rev
Log:
Added missing const.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
cfe/trunk/lib/AST/ASTContext.cpp
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=163477&r1=163476&r2=163477&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Sun Sep 9 05:21:24 2012
@@ -1844,7 +1844,7 @@
// Per C99 6.2.5p6, for every signed integer type, there is a corresponding
// unsigned integer type. This method takes a signed type, and returns the
// corresponding unsigned integer type.
- QualType getCorrespondingUnsignedType(QualType T);
+ QualType getCorrespondingUnsignedType(QualType T) const;
//===--------------------------------------------------------------------===//
// Type Iterators.
Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=163477&r1=163476&r2=163477&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Sun Sep 9 05:21:24 2012
@@ -6830,7 +6830,7 @@
return (unsigned)getTypeSize(T);
}
-QualType ASTContext::getCorrespondingUnsignedType(QualType T) {
+QualType ASTContext::getCorrespondingUnsignedType(QualType T) const {
assert(T->hasSignedIntegerRepresentation() && "Unexpected type");
// Turn <4 x signed int> -> <4 x unsigned int>
More information about the cfe-commits
mailing list