diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-02-01 21:35:00 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-02-01 21:35:00 +0000 |
commit | 123063377428540752bad91c7fbd536a762e31bd (patch) | |
tree | f131a156bf0b3912bc02dd7adaf4898c01c8a119 /include/clang/AST | |
parent | d1b6c770bea9b3da66c6c1eb9a7c483ed7e55c1e (diff) |
Notes
Diffstat (limited to 'include/clang/AST')
-rw-r--r-- | include/clang/AST/Type.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/clang/AST/Type.h b/include/clang/AST/Type.h index 744a408e57962..a50e054f9b286 100644 --- a/include/clang/AST/Type.h +++ b/include/clang/AST/Type.h @@ -3827,13 +3827,13 @@ private: friend class ASTContext; // creates these - AttributedType(QualType canon, Kind attrKind, - QualType modified, QualType equivalent) - : Type(Attributed, canon, canon->isDependentType(), - canon->isInstantiationDependentType(), - canon->isVariablyModifiedType(), - canon->containsUnexpandedParameterPack()), - ModifiedType(modified), EquivalentType(equivalent) { + AttributedType(QualType canon, Kind attrKind, QualType modified, + QualType equivalent) + : Type(Attributed, canon, equivalent->isDependentType(), + equivalent->isInstantiationDependentType(), + equivalent->isVariablyModifiedType(), + equivalent->containsUnexpandedParameterPack()), + ModifiedType(modified), EquivalentType(equivalent) { AttributedTypeBits.AttrKind = attrKind; } |