]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc/util/common.rs
Move ErrorReported to rustc_errors
[rust.git] / src / librustc / util / common.rs
index 3e52a6aa50850c12901e0f9b8c5cac6e418a5374..8581a5b220ac6ac6e7c82e31e8023696f0de7604 100644 (file)
@@ -7,7 +7,6 @@
 use std::time::{Duration, Instant};
 
 use syntax::symbol::{Symbol, sym};
-use rustc_macros::HashStable;
 use crate::session::Session;
 
 #[cfg(test)]
 // The name of the associated type for `Fn` return types.
 pub const FN_OUTPUT_NAME: Symbol = sym::Output;
 
-// Useful type to use with `Result<>` indicate that an error has already
-// been reported to the user, so no need to continue checking.
-#[derive(Clone, Copy, Debug, RustcEncodable, RustcDecodable, HashStable)]
-pub struct ErrorReported;
+pub use errors::ErrorReported;
 
 thread_local!(static TIME_DEPTH: Cell<usize> = Cell::new(0));