Add patch for latest version of compiler

This commit is contained in:
roblabla 2018-03-06 11:36:24 +01:00
parent 4f835a12eb
commit fc76269575
3 changed files with 1689 additions and 1 deletions

View File

@ -333,3 +333,4 @@
-Mapping("258ae6dd9b1a8ac97986852fc9f00f7687004ccb","3cb78259862d37da082f628af3ccb54edf264fd0") -Mapping("258ae6dd9b1a8ac97986852fc9f00f7687004ccb","3cb78259862d37da082f628af3ccb54edf264fd0")
-Mapping("ad36c2f5528d617db66c244d8bcbfc4b36da0ca0","b4be4758361bf1b03410a523e8672b1c1fa7d385") -Mapping("ad36c2f5528d617db66c244d8bcbfc4b36da0ca0","b4be4758361bf1b03410a523e8672b1c1fa7d385")
-Mapping("14481f72102ba2abb5f314d5537fee90352981c5","b4be4758361bf1b03410a523e8672b1c1fa7d385") -Mapping("14481f72102ba2abb5f314d5537fee90352981c5","b4be4758361bf1b03410a523e8672b1c1fa7d385")
-Mapping("c9334404f06a188854af33835a0efe1e834e4ac4","cb56b2d1522e83c5bb0613abcf78b686e994df9e")

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
//! the [std documentation](https://doc.rust-lang.org/nightly/std/io/index.html) //! the [std documentation](https://doc.rust-lang.org/nightly/std/io/index.html)
//! for a full description of the functionality. //! for a full description of the functionality.
#![allow(stable_features,unused_features)] #![allow(stable_features,unused_features)]
#![feature(question_mark,const_fn,collections,alloc,unicode,copy_from_slice,str_char,try_from,str_internals)] #![feature(question_mark,const_fn,collections,alloc,unicode,copy_from_slice,str_char,try_from,str_internals,slice_internals)]
#![no_std] #![no_std]
#[cfg_attr(feature="collections",macro_use)] #[cfg_attr(feature="collections",macro_use)]