@@ -2214,9 +2214,9 @@ class BoundGenericType : public NominalOrBoundGenericNominalType,
2214
2214
}
2215
2215
2216
2216
protected:
2217
- BoundGenericType (TypeKind theKind , NominalTypeDecl *theDecl , Type parent ,
2218
- ArrayRef<Type> genericArgs , const ASTContext *context ,
2219
- RecursiveTypeProperties properties );
2217
+ BoundGenericType (TypeKind K , NominalTypeDecl *TheDecl , Type Parent ,
2218
+ ArrayRef<Type> GenericArgs , const ASTContext *C ,
2219
+ RecursiveTypeProperties Properties );
2220
2220
2221
2221
public:
2222
2222
static BoundGenericType* get (NominalTypeDecl *TheDecl, Type Parent,
@@ -2253,12 +2253,12 @@ class BoundGenericClassType final : public BoundGenericType,
2253
2253
friend TrailingObjects;
2254
2254
2255
2255
private:
2256
- BoundGenericClassType (ClassDecl *theDecl , Type parent ,
2257
- ArrayRef<Type> genericArgs , const ASTContext *context ,
2258
- RecursiveTypeProperties properties )
2256
+ BoundGenericClassType (ClassDecl *TheDecl , Type Parent ,
2257
+ ArrayRef<Type> GenericArgs , const ASTContext *C ,
2258
+ RecursiveTypeProperties Properties )
2259
2259
: BoundGenericType (TypeKind::BoundGenericClass,
2260
- reinterpret_cast <NominalTypeDecl*>(theDecl ), parent ,
2261
- genericArgs, context, properties ) {}
2260
+ reinterpret_cast <NominalTypeDecl*>(TheDecl ), Parent ,
2261
+ GenericArgs, C, Properties ) {}
2262
2262
friend class BoundGenericType ;
2263
2263
2264
2264
public:
@@ -2280,12 +2280,12 @@ class BoundGenericEnumType final : public BoundGenericType,
2280
2280
friend TrailingObjects;
2281
2281
2282
2282
private:
2283
- BoundGenericEnumType (EnumDecl *theDecl , Type parent ,
2284
- ArrayRef<Type> genericArgs , const ASTContext *context ,
2285
- RecursiveTypeProperties properties )
2283
+ BoundGenericEnumType (EnumDecl *TheDecl , Type Parent ,
2284
+ ArrayRef<Type> GenericArgs , const ASTContext *C ,
2285
+ RecursiveTypeProperties Properties )
2286
2286
: BoundGenericType (TypeKind::BoundGenericEnum,
2287
- reinterpret_cast <NominalTypeDecl*>(theDecl ), parent ,
2288
- genericArgs, context, properties ) {}
2287
+ reinterpret_cast <NominalTypeDecl*>(TheDecl ), Parent ,
2288
+ GenericArgs, C, Properties ) {}
2289
2289
friend class BoundGenericType ;
2290
2290
2291
2291
public:
@@ -2307,12 +2307,12 @@ class BoundGenericStructType final : public BoundGenericType,
2307
2307
friend TrailingObjects;
2308
2308
2309
2309
private:
2310
- BoundGenericStructType (StructDecl *theDecl , Type parent ,
2311
- ArrayRef<Type> genericArgs , const ASTContext *context ,
2312
- RecursiveTypeProperties properties )
2310
+ BoundGenericStructType (StructDecl *TheDecl , Type Parent ,
2311
+ ArrayRef<Type> GenericArgs , const ASTContext *C ,
2312
+ RecursiveTypeProperties Properties )
2313
2313
: BoundGenericType (TypeKind::BoundGenericStruct,
2314
- reinterpret_cast <NominalTypeDecl*>(theDecl ), parent ,
2315
- genericArgs, context, properties ) {}
2314
+ reinterpret_cast <NominalTypeDecl*>(TheDecl ), Parent ,
2315
+ GenericArgs, C, Properties ) {}
2316
2316
friend class BoundGenericType ;
2317
2317
2318
2318
public:
0 commit comments