Fix NDArray contructor compilation.
1 Fix NDArray compilation/export
3 diff -r 8d405e2232b3 liboctave/ChangeLog
4 --- a/liboctave/ChangeLog Thu Jul 17 11:19:39 2008 +0200
5 +++ b/liboctave/ChangeLog Thu Jul 17 16:46:50 2008 +0200
7 +2008-07-17 Michael Goffioul <michael.goffioul@gmail.com>
9 + * dNDArray.cc: Do not include ctor NDArray(Array<octave_idx_type>,
10 + bool, bool) into conditional HAVE_FFTW3 preprocessor statement.
12 2008-07-15 Michael Goffioul <michael.goffioul@gmail.com>
14 * oct-mutex.h, oct-mutex.cc: New files.
15 diff -r 8d405e2232b3 liboctave/dNDArray.cc
16 --- a/liboctave/dNDArray.cc Thu Jul 17 11:19:39 2008 +0200
17 +++ b/liboctave/dNDArray.cc Thu Jul 17 16:46:50 2008 +0200
20 #if defined (HAVE_FFTW3)
24 NDArray::NDArray (const Array<octave_idx_type>& a, bool zero_based,
27 ptmp[i] = static_cast<double> (pa[i]);
31 +#if defined (HAVE_FFTW3)
34 NDArray::fourier (int dim) const