Apparently Clang complains about the name hiding here in a way that my
GCC build does not, so a shocking number of buildbots decided to tell me
about it. Change the name of the variable to prevent the name hiding
and hope we don't have to fix this again.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@371876
91177308-0d34-0410-b5e6-
96231b3b80d8
OS << ", SourceRange Range, AttributeCommonInfo::Syntax Syntax";
if (!ElideSpelling)
OS << ", " << R.getName()
- << "Attr::Spelling Spelling = "
+ << "Attr::Spelling S = "
"static_cast<Spelling>(SpellingNotCalculated)";
OS << ") {\n";
OS << " AttributeCommonInfo I(Range, ";
OS << ", Syntax";
if (!ElideSpelling)
- OS << ", Spelling";
+ OS << ", S";
OS << ");\n";
OS << " return Create";
if (Implicit)