Skip to content

Commit 4c4c5a1

Browse files
committed
---
yaml --- r: 54633 b: refs/heads/snap-stage3 c: 4464e44 h: refs/heads/master i: 54631: 82e7533 v: v3
1 parent c62fd1b commit 4c4c5a1

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
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: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 74807b15944205beb2b86ea5422927c47cac3ecc
4+
refs/heads/snap-stage3: 4464e447500c98242b536ee4a461fcd8c5d9adc5
55
refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libsyntax/ext/deriving/clone.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,7 @@ fn expand_deriving_clone_struct_method(cx: @ext_ctxt,
188188
fields.push(field);
189189
}
190190
unnamed_field => {
191-
cx.span_bug(span,
192-
~"unnamed fields in \
193-
expand_deriving_clone_struct_method");
191+
cx.span_bug(span, ~"unnamed fields in `deriving(Clone)`");
194192
}
195193
}
196194
}

branches/snap-stage3/src/libsyntax/ext/deriving/eq.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ fn expand_deriving_eq_struct_method(cx: @ext_ctxt,
289289
&mut outer_expr);
290290
}
291291
unnamed_field => {
292-
cx.span_unimpl(span, ~"unnamed fields with `deriving_eq`");
292+
cx.span_unimpl(span, ~"unnamed fields with `deriving(Eq)`");
293293
}
294294
}
295295
}

branches/snap-stage3/src/libsyntax/ext/deriving/iter_bytes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fn expand_deriving_iter_bytes_struct_method(cx: @ext_ctxt,
191191
}
192192
unnamed_field => {
193193
cx.span_unimpl(span,
194-
~"unnamed fields with `deriving_iter_bytes`");
194+
~"unnamed fields with `deriving(IterBytes)`");
195195
}
196196
}
197197
}

0 commit comments

Comments
 (0)