summaryrefslogtreecommitdiffstats
path: root/grep-searcher/src/sink.rs
diff options
context:
space:
mode:
Diffstat (limited to 'grep-searcher/src/sink.rs')
-rw-r--r--grep-searcher/src/sink.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/grep-searcher/src/sink.rs b/grep-searcher/src/sink.rs
index 63a8ae24..74fba00b 100644
--- a/grep-searcher/src/sink.rs
+++ b/grep-searcher/src/sink.rs
@@ -1,3 +1,4 @@
+use std::error;
use std::fmt;
use std::io;
@@ -49,9 +50,9 @@ impl SinkError for io::Error {
/// A `Box<std::error::Error>` can be used as an error for `Sink`
/// implementations out of the box.
-impl SinkError for Box<::std::error::Error> {
- fn error_message<T: fmt::Display>(message: T) -> Box<::std::error::Error> {
- Box::<::std::error::Error>::from(message.to_string())
+impl SinkError for Box<dyn error::Error> {
+ fn error_message<T: fmt::Display>(message: T) -> Box<dyn error::Error> {
+ Box::<dyn error::Error>::from(message.to_string())
}
}