Skip to content

Commit 911201a

Browse files
committed
Spacing alignment fix
1 parent 4ae2020 commit 911201a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inst/include/Rcpp/sugar/functions/complex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ inline double complex__Re( Rcomplex x){ return x.r ; }
6868
y.i = -x.i ;
6969
return y ;
7070
}
71-
inline double complex__Arg( Rcomplex x ){ return ::atan2(x.i, x.r); }
71+
inline double complex__Arg( Rcomplex x ){ return ::atan2(x.i, x.r); }
7272
// TODO: this does not use HAVE_C99_COMPLEX as in R, perhaps it should
7373
inline Rcomplex complex__exp( Rcomplex x){
7474
Rcomplex y ;

0 commit comments

Comments
 (0)