Skip to content

Commit 93a991b

Browse files
committed
Remove an unused attribute
1 parent f0e329a commit 93a991b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,6 @@ pub trait Integer: Sized + Num + PartialOrd + Ord + Eq {
257257
/// assert_eq!((-1).div_rem( &2), ( 0, -1));
258258
/// assert_eq!((-1).div_rem(&-2), ( 0, -1));
259259
/// ~~~
260-
#[inline]
261260
fn div_rem(&self, other: &Self) -> (Self, Self);
262261

263262
/// Simultaneous floored integer division and modulus.

0 commit comments

Comments
 (0)