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 @@ -3339,7 +3339,7 @@ class ErasureExpr final : public ImplicitConversionExpr,
3339
3339
// / this array will be empty
3340
3340
ArrayRef<ConversionPair> getArgumentConversions () const {
3341
3341
return {getTrailingObjects<ConversionPair>(),
3342
- Bits.ErasureExpr .NumArgumentConversions };
3342
+ static_cast < size_t >( Bits.ErasureExpr .NumArgumentConversions ) };
3343
3343
}
3344
3344
3345
3345
// / Retrieve the conversion expressions mapping requirements from any
@@ -3349,7 +3349,7 @@ class ErasureExpr final : public ImplicitConversionExpr,
3349
3349
// / this array will be empty
3350
3350
MutableArrayRef<ConversionPair> getArgumentConversions () {
3351
3351
return {getTrailingObjects<ConversionPair>(),
3352
- Bits.ErasureExpr .NumArgumentConversions };
3352
+ static_cast < size_t >( Bits.ErasureExpr .NumArgumentConversions ) };
3353
3353
}
3354
3354
3355
3355
void setArgumentConversion (unsigned i, const ConversionPair &p) {
You can’t perform that action at this time.
0 commit comments