diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2016-08-14 20:29:51 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-14 20:29:51 +0300 |
| commit | 7aaa83a7d8da9fcc3f9f1e017041e5adf9919799 (patch) | |
| tree | 74d89c381da433ba26868f3e94017d98641bec98 /src/libsyntax | |
| parent | b975a120e1dc5c874d8c0d6c19e2e31672dc16a1 (diff) | |
| parent | fc97b5cc6f3662281012e56b9ed90a053ea85185 (diff) | |
| download | rust-7aaa83a7d8da9fcc3f9f1e017041e5adf9919799.tar.gz rust-7aaa83a7d8da9fcc3f9f1e017041e5adf9919799.zip | |
Rollup merge of #35606 - Mark-Simulacrum:no-std-fix, r=brson
Change stabilization version of no_std from 1.0 to 1.6. I don't know if more than this is needed. Fixes #35579.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index ad52184a6dc..afda59c61ff 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -314,7 +314,7 @@ declare_features! ( (accepted, issue_5723_bootstrap, "1.0.0", None), (accepted, macro_rules, "1.0.0", None), // Allows using #![no_std] - (accepted, no_std, "1.0.0", None), + (accepted, no_std, "1.6.0", None), (accepted, slicing_syntax, "1.0.0", None), (accepted, struct_variant, "1.0.0", None), // These are used to test this portion of the compiler, they don't actually |
