Changed the deprecated `#[deriving(…)]` to `#[derive(…)]`.

(Why not 0.9.5? I messed up, publishing the `clone` branch as 0.9.5.)
This commit is contained in:
Chris Morgan 2015-01-03 19:29:37 +11:00
parent d41769b77a
commit ef020b03ce
2 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "anymap"
version = "0.9.4"
version = "0.9.6"
authors = ["Chris Morgan <me@chrismorgan.info>"]
description = "A safe and convenient store for one value of each type"
#documentation = "http://www.rust-ci.org/chris-morgan/anymap/doc/anymap/index.html"

View file

@ -114,7 +114,7 @@ impl UncheckedBoxAny for Box<Any + 'static> {
/// data.remove::<int>();
/// assert_eq!(data.get::<int>(), None);
///
/// #[deriving(PartialEq, Show)]
/// #[derive(PartialEq, Show)]
/// struct Foo {
/// str: String,
/// }
@ -295,13 +295,13 @@ fn bench_get_present(b: &mut ::test::Bencher) {
#[test]
fn test_entry() {
#[deriving(Show, PartialEq)] struct A(int);
#[deriving(Show, PartialEq)] struct B(int);
#[deriving(Show, PartialEq)] struct C(int);
#[deriving(Show, PartialEq)] struct D(int);
#[deriving(Show, PartialEq)] struct E(int);
#[deriving(Show, PartialEq)] struct F(int);
#[deriving(Show, PartialEq)] struct J(int);
#[derive(Show, PartialEq)] struct A(int);
#[derive(Show, PartialEq)] struct B(int);
#[derive(Show, PartialEq)] struct C(int);
#[derive(Show, PartialEq)] struct D(int);
#[derive(Show, PartialEq)] struct E(int);
#[derive(Show, PartialEq)] struct F(int);
#[derive(Show, PartialEq)] struct J(int);
let mut map: AnyMap = AnyMap::new();
assert_eq!(map.insert(A(10)), None);