about summary refs log tree commit diff
path: root/src/librustc_driver
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2017-10-09 17:44:56 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2017-10-10 13:12:00 +0200
commitcf11ef436bb8883dce57213c27a73bc39870aa9b (patch)
tree3e1dcb2e3a460e22008d360d757d81d7eeb44d6c /src/librustc_driver
parent52cb6fc9367f3aed373d8edda7c7fa52ed9f4c25 (diff)
downloadrust-cf11ef436bb8883dce57213c27a73bc39870aa9b.tar.gz
rust-cf11ef436bb8883dce57213c27a73bc39870aa9b.zip
Fixed client code for diagnostics migration, adding new methods to `trait BorrowckErrors` as necessary.
Diffstat (limited to 'src/librustc_driver')
-rw-r--r--src/librustc_driver/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc_driver/lib.rs b/src/librustc_driver/lib.rs
index cd21060aff6..3514302c6c8 100644
--- a/src/librustc_driver/lib.rs
+++ b/src/librustc_driver/lib.rs
@@ -1259,7 +1259,6 @@ pub fn diagnostics_registry() -> errors::registry::Registry {
     let mut all_errors = Vec::new();
     all_errors.extend_from_slice(&rustc::DIAGNOSTICS);
     all_errors.extend_from_slice(&rustc_typeck::DIAGNOSTICS);
-    all_errors.extend_from_slice(&rustc_borrowck::DIAGNOSTICS);
     all_errors.extend_from_slice(&rustc_resolve::DIAGNOSTICS);
     all_errors.extend_from_slice(&rustc_privacy::DIAGNOSTICS);
     #[cfg(feature="llvm")]