From edd7c4ec8537658e246bc019d9b794f713befed9 Mon Sep 17 00:00:00 2001 From: LEXUGE Date: Thu, 5 Apr 2018 19:06:18 +0800 Subject: [PATCH] Update checked.rs --- src/ops/checked.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ops/checked.rs b/src/ops/checked.rs index 7339020..a61215b 100644 --- a/src/ops/checked.rs +++ b/src/ops/checked.rs @@ -1,4 +1,4 @@ -use core::ops::{Add, Sub, Mul, Div, Shl, Shr}; +use core::ops::{Add, Sub, Mul, Div, Rem, Shl, Shr}; /// Performs addition that returns `None` instead of wrapping around on /// overflow.