diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-02-06 08:50:17 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-02-06 10:00:17 -0500 |
| commit | 67ee26d94eeda1a1c2c6c60323ea03255f3cea5d (patch) | |
| tree | ec51290c79e1a71d97a35961812ec71d55cae2b9 /src/test | |
| parent | f3573aa834627e52583a9895a8bac6206c56eeef (diff) | |
| download | rust-67ee26d94eeda1a1c2c6c60323ea03255f3cea5d.tar.gz rust-67ee26d94eeda1a1c2c6c60323ea03255f3cea5d.zip | |
remove the deprecated MaybeOwnedVector
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-make/save-analysis/foo.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/run-make/save-analysis/foo.rs b/src/test/run-make/save-analysis/foo.rs index 3ede775b119..d90219b4221 100644 --- a/src/test/run-make/save-analysis/foo.rs +++ b/src/test/run-make/save-analysis/foo.rs @@ -17,7 +17,6 @@ extern crate graphviz; extern crate "flate" as myflate; -use graphviz::maybe_owned_vec::MaybeOwnedVector; use std::collections::{HashMap,HashSet}; use std::cell::RefCell; use std::old_io::stdio::println; @@ -35,7 +34,7 @@ use std::mem::size_of; static uni: &'static str = "Les Miséééééééérables"; static yy: usize = 25us; -static bob: Option<graphviz::maybe_owned_vec::MaybeOwnedVector<'static, isize>> = None; +static bob: Option<std::vec::CowVec<'static, isize>> = None; // buglink test - see issue #1337. |
