Replace StrAllocating.into_owned() with .into_string()

We already have into_string(), but it was implemented in terms of
into_owned(). Flip it around and deprecate into_owned().

Remove a few spurious calls to .into_owned() that existed in libregex
and librustdoc.
This commit is contained in:
Kevin Ballard
2014-05-28 20:45:44 -07:00
parent 812785e01a
commit eb98c9eeaa
4 changed files with 19 additions and 24 deletions

View File

@@ -356,7 +356,7 @@ impl fmt::Show for clean::Type {
}
}
}
ret.into_owned()
ret
})
}
clean::Proc(ref decl) => {