# HG changeset patch # User jwe # Date 1076961426 0 # Node ID 88b638195bd1d4ed1f3be0ea7a73e6d5a1407c3e # Parent 0ff45249d3219889793285c19a854c00959e1aa3 [project @ 2004-02-16 19:57:06 by jwe] diff -r 0ff45249d321 -r 88b638195bd1 liboctave/oct-fftw.cc --- a/liboctave/oct-fftw.cc Mon Feb 16 19:13:20 2004 +0000 +++ b/liboctave/oct-fftw.cc Mon Feb 16 19:57:06 2004 +0000 @@ -24,9 +24,11 @@ #if defined (HAVE_FFTW3) +#include +#include + #include "oct-fftw.h" #include "lo-error.h" -#include // Helper class to create and cache fftw plans for both 1d and 2d. This // implementation uses FFTW_ESTIMATE to create the plans, which in theory @@ -107,8 +109,8 @@ int which = (dir == FFTW_FORWARD) ? 0 : 1; fftw_plan *cur_plan_p = &plan[which]; bool create_new_plan = false; - char in_align = (static_cast (in)) & 0xF; - char out_align = (static_cast (in)) & 0xF; - char out_align = (static_cast + + * version.h (OCTAVE_VERSION): Now 2.1.54. + (OCTAVE_API_VERSION): Now api-v5. + 2004-02-16 David Bateman * DLD-FUNCTIONS/fft.cc: Adapt for Nd arrays, combine with ifft.cc. diff -r 0ff45249d321 -r 88b638195bd1 src/version.h --- a/src/version.h Mon Feb 16 19:13:20 2004 +0000 +++ b/src/version.h Mon Feb 16 19:57:06 2004 +0000 @@ -23,9 +23,9 @@ #if !defined (octave_version_h) #define octave_version_h 1 -#define OCTAVE_VERSION "2.1.53" +#define OCTAVE_VERSION "2.1.54" -#define OCTAVE_API_VERSION "api-v4" +#define OCTAVE_API_VERSION "api-v5" #define OCTAVE_COPYRIGHT \ "Copyright (C) 2004 John W. Eaton."