Clarify that QualifiedNameType is sugar-only. This will matter once we can parse typename-specifiers

llvm-svn: 67803
This commit is contained in:
Douglas Gregor 2009-03-27 00:03:43 +00:00
parent c35c9d87a9
commit f53c47ecc2
1 changed files with 3 additions and 1 deletions

View File

@ -1562,7 +1562,9 @@ protected:
/// name, e.g., N::M::type.
///
/// This type is used to keep track of a type name as written in the
/// source code, including any nested-name-specifiers.
/// source code, including any nested-name-specifiers. The type itself
/// is always "sugar", used to express what was written in the source
/// code but containing no additional semantic information.
class QualifiedNameType : public Type, public llvm::FoldingSetNode {
/// \brief The nested name specifier containing the qualifier.
NestedNameSpecifier *NNS;