comparison libinterp/dldfcn/fftw.cc @ 18833:6113e0c6920b

maint: Clean up extra spaces before/after parentheses.
author Rik <rik@octave.org>
date Fri, 25 Apr 2014 13:25:25 -0700
parents 175b392e91fe
children 90421e725f1d
comparison
equal deleted inserted replaced
18832:f684f7075aee 18833:6113e0c6920b
301 if (nargin == 2) //threads setter 301 if (nargin == 2) //threads setter
302 { 302 {
303 if (args(1).is_real_scalar ()) 303 if (args(1).is_real_scalar ())
304 { 304 {
305 int nthreads = args(1).int_value(); 305 int nthreads = args(1).int_value();
306 if ( nthreads >= 1) 306 if (nthreads >= 1)
307 { 307 {
308 #if defined (HAVE_FFTW3_THREADS) 308 #if defined (HAVE_FFTW3_THREADS)
309 octave_fftw_planner::threads (nthreads); 309 octave_fftw_planner::threads (nthreads);
310 #else 310 #else
311 warning ("this copy of Octave was not configured to use the multithreaded fftw libraries."); 311 warning ("this copy of Octave was not configured to use the multithreaded fftw libraries.");