Use StoreId::new() in macro

This commit is contained in:
Matthias Beyer 2016-08-07 16:54:48 +02:00
parent fe73a53d44
commit 1af3ab018b

View file

@ -151,7 +151,7 @@ macro_rules! module_entry_path_mod {
impl $crate::storeid::IntoStoreId for ModuleEntryPath {
fn into_storeid(self) -> $crate::storeid::StoreId {
StoreId::from(self.0)
StoreId::new(None, self.0)
}
}
}