We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6662a8 commit b2164f2Copy full SHA for b2164f2
lib/AST/GenericSignatureBuilder.cpp
@@ -1653,12 +1653,12 @@ std::string GenericSignatureBuilder::PotentialArchetype::getDebugName() const {
1653
if (proto) {
1654
result.push_back('[');
1655
result.push_back('.');
1656
- result.append(proto->getName().str().begin(), proto->getName().str().end());
+ result.append(proto->getName().str());
1657
result.push_back(']');
1658
}
1659
1660
1661
- result.append(getNestedName().str().begin(), getNestedName().str().end());
+ result.append(getNestedName().str());
1662
1663
return result.str().str();
1664
0 commit comments