@@ -988,8 +988,8 @@ _gatherGenericParameters(const ContextDescriptor *context,
988988 // requirements and fill in the generic arguments vector.
989989 if (!genericParamCounts.empty ()) {
990990 // Compute the set of generic arguments "as written".
991- SmallVector<const Metadata *, 8 > allGenericArgs;
992-
991+ llvm:: SmallVector<const Metadata *, 8 > allGenericArgs;
992+
993993 // If we have a parent, gather it's generic arguments "as written".
994994 if (parent) {
995995 gatherWrittenGenericArgs (parent, parent->getTypeContextDescriptor (),
@@ -1183,16 +1183,16 @@ class DecodedMetadataBuilder {
11831183 if (!descriptor)
11841184 return BuiltType ();
11851185 auto outerContext = descriptor->Parent .get ();
1186-
1187- SmallVector<BuiltType, 8 > allGenericArgs;
1186+
1187+ llvm:: SmallVector<BuiltType, 8 > allGenericArgs;
11881188 for (auto argSet : genericArgs) {
11891189 allGenericArgs.append (argSet.begin (), argSet.end ());
11901190 }
11911191
11921192 // Gather the generic parameters we need to parameterize the opaque decl.
1193- SmallVector<unsigned , 8 > genericParamCounts;
1194- SmallVector<const void *, 8 > allGenericArgsVec;
1195-
1193+ llvm:: SmallVector<unsigned , 8 > genericParamCounts;
1194+ llvm:: SmallVector<const void *, 8 > allGenericArgsVec;
1195+
11961196 if (!_gatherGenericParameters (outerContext,
11971197 allGenericArgs,
11981198 BuiltType (), /* no parent */
@@ -1291,8 +1291,8 @@ class DecodedMetadataBuilder {
12911291
12921292 // Figure out the various levels of generic parameters we have in
12931293 // this type.
1294- SmallVector<unsigned , 8 > genericParamCounts;
1295- SmallVector<const void *, 8 > allGenericArgsVec;
1294+ llvm:: SmallVector<unsigned , 8 > genericParamCounts;
1295+ llvm:: SmallVector<const void *, 8 > allGenericArgsVec;
12961296
12971297 if (!_gatherGenericParameters (typeDecl,
12981298 genericArgs,
@@ -1366,8 +1366,8 @@ class DecodedMetadataBuilder {
13661366 BuiltType
13671367 createFunctionType (llvm::ArrayRef<Demangle::FunctionParam<BuiltType>> params,
13681368 BuiltType result, FunctionTypeFlags flags) const {
1369- SmallVector<BuiltType, 8 > paramTypes;
1370- SmallVector<uint32_t , 8 > paramFlags;
1369+ llvm:: SmallVector<BuiltType, 8 > paramTypes;
1370+ llvm:: SmallVector<uint32_t , 8 > paramFlags;
13711371
13721372 // Fill in the parameters.
13731373 paramTypes.reserve (params.size ());
@@ -2032,7 +2032,7 @@ void swift::gatherWrittenGenericArgs(
20322032 // canonicalized away. Use same-type requirements to reconstitute them.
20332033
20342034 // Retrieve the mapping information needed for depth/index -> flat index.
2035- SmallVector<unsigned , 8 > genericParamCounts;
2035+ llvm:: SmallVector<unsigned , 8 > genericParamCounts;
20362036 (void )_gatherGenericParameterCounts (description, genericParamCounts,
20372037 BorrowFrom);
20382038
0 commit comments