diff options
Diffstat (limited to 'lib/AST/TypePrinter.cpp')
-rw-r--r-- | lib/AST/TypePrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/TypePrinter.cpp b/lib/AST/TypePrinter.cpp index 7e9e7c59b1..abe68ef07b 100644 --- a/lib/AST/TypePrinter.cpp +++ b/lib/AST/TypePrinter.cpp @@ -75,7 +75,7 @@ static void AppendTypeQualList(std::string &S, unsigned TypeQuals) { void TypePrinter::print(QualType t, std::string &buffer) { SplitQualType split = t.split(); - print(split.first, split.second, buffer); + print(split.Ty, split.Quals, buffer); } void TypePrinter::print(const Type *T, Qualifiers Quals, std::string &buffer) { |