Skip to content

Commit 49d890c

Browse files
committed
---
yaml --- r: 102078 b: refs/heads/master c: d223dd1 h: refs/heads/master v: v3
1 parent 4156feb commit 49d890c

26 files changed

+1155
-16
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 0135b521ad38615e9a07aac54d9c22627af57ca4
2+
refs/heads/master: d223dd1e57cc412aa2eff28e6604f86b9f013083
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 6e7f170fedd3c526a643c0b2d13863acd982be02
55
refs/heads/try: a97642026c18a624ff6ea01075dd9550f8ed07ff

trunk/src/etc/generate-deriving-span-tests.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,8 @@ def write_file(name, string):
119119
('Clone', [], 1), ('DeepClone', ['Clone'], 1),
120120
('Eq', [], 2), ('Ord', [], 8),
121121
('TotalEq', [], 1), ('TotalOrd', ['TotalEq'], 1),
122-
('Show', [], 1)]:
122+
('Show', [], 1),
123+
('Hash', [], 1)]:
123124
traits[trait] = (ALL, supers, errs)
124125

125126
for (trait, (types, super_traits, error_count)) in traits.items():

trunk/src/libextra/stats.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#[allow(missing_doc)];
1212

1313
use std::cmp;
14+
use std::hash_old::Hash;
1415
use std::hashmap;
1516
use std::io;
1617
use std::mem;

trunk/src/librustc/metadata/decoder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ use middle::typeck;
2727
use middle::astencode::vtable_decoder_helpers;
2828

2929
use std::u64;
30+
use std::hash_old::Hash;
3031
use std::io;
3132
use std::io::extensions::u64_from_be_bytes;
3233
use std::option;

trunk/src/librustc/metadata/encoder.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ use middle;
2626
use serialize::Encodable;
2727
use std::cast;
2828
use std::cell::{Cell, RefCell};
29+
use std::hash_old::Hash;
2930
use std::hashmap::{HashMap, HashSet};
3031
use std::io::MemWriter;
3132
use std::str;

trunk/src/librustc/middle/ty.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4916,7 +4916,7 @@ pub fn trait_method_of_method(tcx: ctxt,
49164916
/// Creates a hash of the type `t` which will be the same no matter what crate
49174917
/// context it's calculated within. This is used by the `type_id` intrinsic.
49184918
pub fn hash_crate_independent(tcx: ctxt, t: t, local_hash: ~str) -> u64 {
4919-
use std::hash::{SipState, Streaming};
4919+
use std::hash_old::{SipState, Streaming};
49204920

49214921
let mut hash = SipState::new(0, 0);
49224922
let region = |_hash: &mut SipState, r: Region| {

trunk/src/libserialize/serialize.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
Core encoding and decoding interfaces.
1515
*/
1616

17+
use std::hash_old::Hash;
1718
use std::hashmap::{HashMap, HashSet};
1819
use std::rc::Rc;
1920
use std::trie::{TrieMap, TrieSet};

0 commit comments

Comments
 (0)