File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
branches/dist-snap/src/libstd Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9
9
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10
- refs/heads/dist-snap: 298eb8c7260fe321e30d9c5e22f4ecefc82c4f64
10
+ refs/heads/dist-snap: cd8ec6d9236867d3f088432033f56b6ad29c15a7
11
11
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
12
12
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -570,11 +570,11 @@ impl EbmlDeserializer: serialization::Deserializer {
570
570
571
571
#[ test]
572
572
fn test_option_int ( ) {
573
- fn serialize_1 < S : serialization:: serializer > ( s : S , v : int ) {
573
+ fn serialize_1 < S : serialization:: Serializer > ( s : S , v : int ) {
574
574
s. emit_i64 ( v as i64 ) ;
575
575
}
576
576
577
- fn serialize_0 < S : serialization:: serializer > ( s : S , v : Option < int > ) {
577
+ fn serialize_0 < S : serialization:: Serializer > ( s : S , v : Option < int > ) {
578
578
do s. emit_enum ( ~"core:: option:: t") {
579
579
match v {
580
580
None => s. emit_enum_variant (
@@ -588,11 +588,11 @@ fn test_option_int() {
588
588
}
589
589
}
590
590
591
- fn deserialize_1 < S : serialization:: deserializer > ( s : S ) -> int {
591
+ fn deserialize_1 < S : serialization:: Deserializer > ( s : S ) -> int {
592
592
s. read_i64 ( ) as int
593
593
}
594
594
595
- fn deserialize_0 < S : serialization:: deserializer > ( s : S ) -> Option < int > {
595
+ fn deserialize_0 < S : serialization:: Deserializer > ( s : S ) -> Option < int > {
596
596
do s. read_enum ( ~"core:: option:: t") {
597
597
do s. read_enum_variant |i| {
598
598
match i {
You can’t perform that action at this time.
0 commit comments