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 @@ -3113,7 +3113,7 @@ extension UnsignedInteger where Self : FixedWidthInteger {
3113
3113
// This check is potentially removable by the optimizer
3114
3114
if source. bitWidth >= Self . bitWidth {
3115
3115
_precondition ( source <= Self . max,
3116
- " Not enough bits to represent a signed value " )
3116
+ " Not enough bits to represent the passed value " )
3117
3117
}
3118
3118
self . init ( truncatingIfNeeded: source)
3119
3119
}
@@ -3223,7 +3223,7 @@ extension SignedInteger where Self : FixedWidthInteger {
3223
3223
if ( source. bitWidth > Self . bitWidth) ||
3224
3224
( source. bitWidth == Self . bitWidth && !T. isSigned) {
3225
3225
_precondition ( source <= Self . max,
3226
- " Not enough bits to represent a signed value " )
3226
+ " Not enough bits to represent the passed value " )
3227
3227
}
3228
3228
self . init ( truncatingIfNeeded: source)
3229
3229
}
You can’t perform that action at this time.
0 commit comments