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 2ea58f9 commit d9ce07fCopy full SHA for d9ce07f
lib/ClangImporter/ClangImporter.cpp
@@ -2198,7 +2198,7 @@ auto ClangImporter::Implementation::importFullName(
2198
if (objcMethod->isVariadic() && shouldMakeSelectorNonVariadic(selector)) {
2199
--numArgs;
2200
result.DroppedVariadic = true;
2201
- params = params.slice(1);
+ params = params.drop_back(1);
2202
}
2203
2204
for (unsigned index = 0; index != numArgs; ++index) {
lib/ClangImporter/ImportDecl.cpp
@@ -3162,7 +3162,7 @@ namespace {
3162
3163
// If we dropped the variadic, handle it now.
3164
if (importedName.DroppedVariadic) {
3165
3166
variadic = false;
3167
3168
0 commit comments