Migrate srml-support to the 2018 edition (#1663)

This commit is contained in:
Stanislav Tkach
2019-02-03 12:42:12 +02:00
committed by Gav Wood
parent ddb44db551
commit 87f0f6fd8f
10 changed files with 48 additions and 63 deletions
+2 -2
View File
@@ -15,9 +15,9 @@
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
#[doc(hidden)]
pub use rstd::vec::Vec;
pub use crate::rstd::vec::Vec;
#[doc(hidden)]
pub use runtime_primitives::traits::{Block as BlockT, Extrinsic};
pub use crate::runtime_primitives::traits::{Block as BlockT, Extrinsic};
#[doc(hidden)]
pub use inherents::{InherentData, ProvideInherent, CheckInherentsResult, IsFatalError};