Tidy up rust code with regard to new rule (no = in beginning of line)

This commit is contained in:
Jure Podgoršek 2017-01-06 20:57:16 +01:00
parent adcedd8314
commit bb91ca616c
3 changed files with 6 additions and 6 deletions

View file

@ -51,8 +51,8 @@ macro_rules! thread_types ( ( $( $fun:ident = $flag:ident ; )* ) => (
}
#[cfg(debug_assertions)]
static TYPES: &'static [ThreadState]
= &[ $( $flag ),* ];
static TYPES: &'static [ThreadState] =
&[ $( $flag ),* ];
));
thread_types! {