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 @@ -3105,7 +3105,7 @@ extension UnsignedInteger where Self : FixedWidthInteger {
3105
3105
// This check is potentially removable by the optimizer
3106
3106
if source. bitWidth >= Self . bitWidth {
3107
3107
_precondition ( source <= Self . max,
3108
- " Not enough bits to represent a signed value " )
3108
+ " Not enough bits to represent the passed value " )
3109
3109
}
3110
3110
self . init ( truncatingIfNeeded: source)
3111
3111
}
@@ -3215,7 +3215,7 @@ extension SignedInteger where Self : FixedWidthInteger {
3215
3215
if ( source. bitWidth > Self . bitWidth) ||
3216
3216
( source. bitWidth == Self . bitWidth && !T. isSigned) {
3217
3217
_precondition ( source <= Self . max,
3218
- " Not enough bits to represent a signed value " )
3218
+ " Not enough bits to represent the passed value " )
3219
3219
}
3220
3220
self . init ( truncatingIfNeeded: source)
3221
3221
}
You can’t perform that action at this time.
0 commit comments