1
Fork 0

Fix fallout from change, adding explicit Sized annotations where necessary.

This commit is contained in:
Niko Matsakis 2014-12-18 15:27:41 -05:00
parent 1f887c8c57
commit 1b3734f8ae
14 changed files with 62 additions and 20 deletions

View file

@ -53,7 +53,7 @@ impl<T> MoveMap<T> for OwnedSlice<T> {
}
}
pub trait Folder {
pub trait Folder : Sized {
// Any additions to this trait should happen in form
// of a call to a public `noop_*` function that only calls
// out to the folder again, not other `noop_*` functions.