Recognize C++0x rvalue references.

This commit is contained in:
Roberto Raggi
2010-03-23 12:11:33 +01:00
parent 21c13328d3
commit 4b8d597196
13 changed files with 46 additions and 20 deletions

View File

@@ -108,7 +108,7 @@ public:
PointerType *pointerType(const FullySpecifiedType &elementType);
/// Returns a Type object of type ReferenceType.
ReferenceType *referenceType(const FullySpecifiedType &elementType);
ReferenceType *referenceType(const FullySpecifiedType &elementType, bool rvalueRef = false);
/// Retruns a Type object of type ArrayType.
ArrayType *arrayType(const FullySpecifiedType &elementType, unsigned size = 0);