Auto merge of #29400 - gkoz:phantom_data, r=alexcrichton

None
This commit is contained in:
bors 2015-10-28 07:49:04 +00:00
commit a455edfa71

View File

@ -18,6 +18,7 @@
use clone::Clone;
use cmp;
use default::Default;
use option::Option;
use hash::Hash;
use hash::Hasher;
@ -256,6 +257,12 @@ macro_rules! impls{
$t
}
}
impl<T:?Sized> Default for $t<T> {
fn default() -> $t<T> {
$t
}
}
)
}