The ParseErrorReporter trait no longer needs to be Send.

This commit is contained in:
Josh Matthews 2017-04-19 15:00:13 +10:00
parent 3773a4d499
commit 58e39bfffa

View file

@ -75,7 +75,7 @@ impl<'a> ParseError<'a> {
} }
/// A generic trait for an error reporter. /// A generic trait for an error reporter.
pub trait ParseErrorReporter : Sync + Send { pub trait ParseErrorReporter : Sync {
/// Called when the style engine detects an error. /// Called when the style engine detects an error.
/// ///
/// Returns the current input being parsed, the source position it was /// Returns the current input being parsed, the source position it was