diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-07 00:44:31 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-07 00:44:31 +0530 |
| commit | df7db970dcdb7b7fb1080b9d66baf2e45b689914 (patch) | |
| tree | d833bcad68e8a79983ff59d6ebade846e3df58a1 /src/test | |
| parent | fc1e045d83bb1292e6f017d3f632d19487625bf6 (diff) | |
| parent | 67ee26d94eeda1a1c2c6c60323ea03255f3cea5d (diff) | |
| download | rust-df7db970dcdb7b7fb1080b9d66baf2e45b689914.tar.gz rust-df7db970dcdb7b7fb1080b9d66baf2e45b689914.zip | |
Rollup merge of #22009 - japaric:no-mov, r=alexcrichton
If you were still using `MaybeOwnedVector`, update your code to use `CowVec`. [breaking-change] --- We already removed `MaybeOwned` (the string equivalent) long time ago and with a much shorter deprecation period. It's time to let go.
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. |
