about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2016-09-12 15:55:02 -0700
committerGitHub <noreply@github.com>2016-09-12 15:55:02 -0700
commit7bd25a304851afdf0ba1897a950220ed3ad0a215 (patch)
tree3c83f9dfb923c343c0444a478489571eb22de2f7 /src
parent63fecad2e7c1f58e962a100d4159ddd47ebc627f (diff)
downloadrust-7bd25a304851afdf0ba1897a950220ed3ad0a215.tar.gz
rust-7bd25a304851afdf0ba1897a950220ed3ad0a215.zip
Remove stray attribute
Diffstat (limited to 'src')
-rw-r--r--src/libcore/iter/traits.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcore/iter/traits.rs b/src/libcore/iter/traits.rs
index 563fb213d37..b55d6f96af9 100644
--- a/src/libcore/iter/traits.rs
+++ b/src/libcore/iter/traits.rs
@@ -587,7 +587,6 @@ macro_rules! integer_sum_product {
     ($($a:ident)*) => ($(
         #[stable(feature = "iter_arith_traits", since = "1.12.0")]
         impl Sum for $a {
-            #[rustc_inherit_overflow_checks]
             fn sum<I: Iterator<Item=$a>>(iter: I) -> $a {
                 iter.fold(0, Add::add)
             }