File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,8 @@ impl Config {
511
511
( OptLevel :: Release , false ) => "Release" ,
512
512
( OptLevel :: Release , true ) => "RelWithDebInfo" ,
513
513
( OptLevel :: Size , _) => "MinSizeRel" ,
514
- } . to_string ( )
514
+ }
515
+ . to_string ( )
515
516
} ) ;
516
517
for & ( ref k, ref v) in & self . defines {
517
518
let mut os = OsString :: from ( "-D" ) ;
@@ -618,7 +619,8 @@ impl Config {
618
619
} else {
619
620
wchar
620
621
}
621
- } ) . collect :: < Vec < _ > > ( ) ;
622
+ } )
623
+ . collect :: < Vec < _ > > ( ) ;
622
624
ccompiler = OsString :: from_wide ( & wchars) ;
623
625
}
624
626
cmd. arg ( ccompiler) ;
@@ -740,7 +742,10 @@ impl Config {
740
742
) ,
741
743
Err ( msg) => panic ! ( msg) ,
742
744
} ;
743
- if [ "i686" , "x86_64" , "thumbv7a" , "aarch64" ] . iter ( ) . any ( |t| target. contains ( t) ) {
745
+ if [ "i686" , "x86_64" , "thumbv7a" , "aarch64" ]
746
+ . iter ( )
747
+ . any ( |t| target. contains ( t) )
748
+ {
744
749
base. to_string ( )
745
750
} else {
746
751
panic ! ( "unsupported msvc target: {}" , target) ;
You can’t perform that action at this time.
0 commit comments