File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1543,6 +1543,7 @@ macro_rules! nonzero_integer_signedness_dependent_methods {
15431543 #[ rustc_const_unstable( feature = "isqrt" , issue = "116226" ) ]
15441544 #[ must_use = "this returns the result of the operation, \
15451545 without modifying the original"]
1546+ #[ inline( always) ]
15461547 pub const fn isqrt( self ) -> Self {
15471548 let result = self . get( ) . isqrt( ) ;
15481549
Original file line number Diff line number Diff line change @@ -2704,7 +2704,7 @@ macro_rules! uint_impl {
27042704 #[ rustc_const_unstable( feature = "isqrt" , issue = "116226" ) ]
27052705 #[ must_use = "this returns the result of the operation, \
27062706 without modifying the original"]
2707- #[ inline]
2707+ #[ inline( always ) ]
27082708 pub const fn isqrt( self ) -> Self {
27092709 let result = crate :: num:: int_sqrt:: $ActualT( self as $ActualT) as $SelfT;
27102710
You can’t perform that action at this time.
0 commit comments