about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-02-03 22:55:28 +0000
committerbors <bors@rust-lang.org>2017-02-03 22:55:28 +0000
commit0648517faf1e2cf37c8b6770cbd0180a816ed9a0 (patch)
tree72112e627a4cd04f53203220fbfc101c9e12b7b6 /src/libsyntax/parse
parent86d9ed6c82c6745fec46b9ecf2fa91be7924dd16 (diff)
parent626e754473da96a670c917b9cbefd1c1ea888a9c (diff)
downloadrust-0648517faf1e2cf37c8b6770cbd0180a816ed9a0.tar.gz
rust-0648517faf1e2cf37c8b6770cbd0180a816ed9a0.zip
Auto merge of #39463 - alexcrichton:update-bootstrap, r=alexcrichton
Bump version, upgrade bootstrap

This commit updates the version number to 1.17.0 as we're not on that version of
the nightly compiler, and at the same time this updates src/stage0.txt to
bootstrap from freshly minted beta compiler and beta Cargo.
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/mod.rs2
-rw-r--r--src/libsyntax/parse/parser.rs2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index f1a3b523cfd..20e80afc115 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -28,8 +28,6 @@ use std::path::{Path, PathBuf};
 use std::rc::Rc;
 use std::str;
 
-use rustc_i128::u128;
-
 pub type PResult<'a, T> = Result<T, DiagnosticBuilder<'a>>;
 
 #[macro_use]
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 2532a1def7d..fd7c56f136f 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -65,8 +65,6 @@ use std::path::{Path, PathBuf};
 use std::rc::Rc;
 use std::slice;
 
-use rustc_i128::u128;
-
 bitflags! {
     flags Restrictions: u8 {
         const RESTRICTION_STMT_EXPR         = 1 << 0,