diff options
Diffstat (limited to 'AST/Type.cpp')
-rw-r--r-- | AST/Type.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/AST/Type.cpp b/AST/Type.cpp index f5f7f3d82c..80b2d5cb93 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -760,9 +760,9 @@ void QualType::getAsStringInternal(std::string &S) const { } // Print qualifiers as appropriate. - if (unsigned TQ = getCVRQualifiers()) { + if (unsigned Tq = getCVRQualifiers()) { std::string TQS; - AppendTypeQualList(TQS, TQ); + AppendTypeQualList(TQS, Tq); if (!S.empty()) S = TQS + ' ' + S; else |