Skip to content

Commit 877fc15

Browse files
committed
---
yaml --- r: 56801 b: refs/heads/try c: 4464e44 h: refs/heads/master i: 56799: e684294 v: v3
1 parent 6e653f4 commit 877fc15

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
@@ -2,7 +2,7 @@
22
refs/heads/master: c081ffbd1e845687202a975ea2e698b623e5722f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 79a2b2eafc3c766cecec8a5f76317693bae9ed17
5-
refs/heads/try: 74807b15944205beb2b86ea5422927c47cac3ecc
5+
refs/heads/try: 4464e447500c98242b536ee4a461fcd8c5d9adc5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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/try/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/try/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)