Skip to content

Commit 143accb

Browse files
committed
---
yaml --- r: 63624 b: refs/heads/snap-stage3 c: 1e7ca8d h: refs/heads/master v: v3
1 parent d8f247f commit 143accb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+675
-2399
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 2d28d645422c1617be58c8ca7ad9a457264ca850
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 832fe327218e556740ba4e028b7b60cb41212469
4+
refs/heads/snap-stage3: 1e7ca8dd24f4ea7e2aefa46dbf75f8695d139375
55
refs/heads/try: 7b78b52e602bb3ea8174f9b2006bff3315f03ef9
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/RELEASES.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ Version 0.7 (July 2013)
7878
* extra: `BigInt`, `BigUint` implement numeric and comparison traits.
7979
* extra: `term` uses terminfo now, is more correct.
8080
* extra: `arc` functions converted to methods.
81-
* extra: Implementation of fixed output size variations of SHA-2.
8281

8382
* Tooling
8483
* `unused_unsafe` lint mode for detecting unnecessary `unsafe` blocks.

branches/snap-stage3/src/libextra/bitv.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -666,12 +666,8 @@ impl BitvSet {
666666
pub fn symmetric_difference_with(&mut self, other: &BitvSet) {
667667
self.other_op(other, |w1, w2| w1 ^ w2);
668668
}
669-
}
670-
671-
impl BaseIter<uint> for BitvSet {
672-
fn size_hint(&self) -> Option<uint> { Some(self.len()) }
673669

674-
fn each(&self, blk: &fn(v: &uint) -> bool) -> bool {
670+
pub fn each(&self, blk: &fn(v: &uint) -> bool) -> bool {
675671
for self.bitv.storage.iter().enumerate().advance |(i, &w)| {
676672
if !iterate_bits(i * uint::bits, w, |b| blk(&b)) {
677673
return false;

branches/snap-stage3/src/libextra/crypto/digest.rs

Lines changed: 0 additions & 88 deletions
This file was deleted.

0 commit comments

Comments
 (0)