diff options
| author | Andrew Paseltiner <apaseltiner@gmail.com> | 2013-03-20 11:52:45 -0400 |
|---|---|---|
| committer | Andrew Paseltiner <apaseltiner@gmail.com> | 2013-03-22 06:30:59 -0400 |
| commit | e2abecd3ab406ce447a8b23c8a7563e9c455f870 (patch) | |
| tree | e1a2cd1af8878d1f4f37fb21e4c544d1131cd000 /src/libsyntax/print | |
| parent | 6e883c730e0d6b07a8a94df30c681a292a031b18 (diff) | |
| download | rust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.tar.gz rust-e2abecd3ab406ce447a8b23c8a7563e9c455f870.zip | |
syntax: replace uses of old deriving attribute with new one
Diffstat (limited to 'src/libsyntax/print')
| -rw-r--r-- | src/libsyntax/print/pp.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/print/pp.rs b/src/libsyntax/print/pp.rs index ed108df7db2..d0022675473 100644 --- a/src/libsyntax/print/pp.rs +++ b/src/libsyntax/print/pp.rs @@ -66,7 +66,7 @@ use core::vec; * line (which it can't) and so naturally place the content on its own line to * avoid combining it with other lines and making matters even worse. */ -#[deriving_eq] +#[deriving(Eq)] pub enum breaks { consistent, inconsistent, } pub struct break_t { |
