about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-07 00:44:31 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-07 00:44:31 +0530
commitdf7db970dcdb7b7fb1080b9d66baf2e45b689914 (patch)
treed833bcad68e8a79983ff59d6ebade846e3df58a1 /src/test
parentfc1e045d83bb1292e6f017d3f632d19487625bf6 (diff)
parent67ee26d94eeda1a1c2c6c60323ea03255f3cea5d (diff)
downloadrust-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.rs3
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.