diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-13 18:53:14 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2014-03-14 11:28:39 +1100 |
| commit | 62792f09f20221add2484608fc3071259067b79a (patch) | |
| tree | d347a7b5f2d4f012c549cf8ebc30835777902c87 /src/libsemver | |
| parent | 6ff3c9995e63b63c16d13739a0fc2d321f95410e (diff) | |
lint: add lint for use of a `~[T]`.
This is useless at the moment (since pretty much every crate uses `~[]`), but should help avoid regressions once completely removed from a crate.
Diffstat (limited to 'src/libsemver')
| -rw-r--r-- | src/libsemver/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index 700dc986794..3ffafbada91 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -33,6 +33,8 @@ #[crate_type = "dylib"]; #[license = "MIT/ASL2"]; +#[allow(deprecated_owned_vector)]; + use std::char; use std::cmp; use std::fmt; |
