because silly gcc 3.4.6 barfs on this
construct.
Type.h defines an "enum TQ", which makes
the parser to err.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47438
91177308-0d34-0410-b5e6-
96231b3b80d8
}
// 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