File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3308,7 +3308,7 @@ class ErasureExpr final : public ImplicitConversionExpr,
3308
3308
// / this array will be empty
3309
3309
ArrayRef<ConversionPair> getArgumentConversions () const {
3310
3310
return {getTrailingObjects<ConversionPair>(),
3311
- Bits.ErasureExpr .NumArgumentConversions };
3311
+ static_cast < size_t >( Bits.ErasureExpr .NumArgumentConversions ) };
3312
3312
}
3313
3313
3314
3314
// / Retrieve the conversion expressions mapping requirements from any
@@ -3318,7 +3318,7 @@ class ErasureExpr final : public ImplicitConversionExpr,
3318
3318
// / this array will be empty
3319
3319
MutableArrayRef<ConversionPair> getArgumentConversions () {
3320
3320
return {getTrailingObjects<ConversionPair>(),
3321
- Bits.ErasureExpr .NumArgumentConversions };
3321
+ static_cast < size_t >( Bits.ErasureExpr .NumArgumentConversions ) };
3322
3322
}
3323
3323
3324
3324
void setArgumentConversion (unsigned i, const ConversionPair &p) {
You can’t perform that action at this time.
0 commit comments