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 {
31053105 // This check is potentially removable by the optimizer
31063106 if source. bitWidth >= Self . bitWidth {
31073107 _precondition ( source <= Self . max,
3108- " Not enough bits to represent a signed value " )
3108+ " Not enough bits to represent the passed value " )
31093109 }
31103110 self . init ( truncatingIfNeeded: source)
31113111 }
@@ -3215,7 +3215,7 @@ extension SignedInteger where Self : FixedWidthInteger {
32153215 if ( source. bitWidth > Self . bitWidth) ||
32163216 ( source. bitWidth == Self . bitWidth && !T. isSigned) {
32173217 _precondition ( source <= Self . max,
3218- " Not enough bits to represent a signed value " )
3218+ " Not enough bits to represent the passed value " )
32193219 }
32203220 self . init ( truncatingIfNeeded: source)
32213221 }
You can’t perform that action at this time.
0 commit comments