Use size_t instead of int for alloc_*

This commit is contained in:
Guilhem Lavaux 2012-11-11 14:24:09 -05:00
parent 09551ae85b
commit 38eb21def8

View File

@ -28,8 +28,8 @@ public: \
typedef prefix ## _complex complex_type; \ typedef prefix ## _complex complex_type; \
typedef prefix ## _plan plan_type; \ typedef prefix ## _plan plan_type; \
\ \
static complex_type *alloc_complex(int N) { return prefix ## _alloc_complex(N); } \ static complex_type *alloc_complex(size_t N) { return prefix ## _alloc_complex(N); } \
static real_type *alloc_real(int N) { return prefix ## _alloc_real(N); } \ static real_type *alloc_real(size_t N) { return prefix ## _alloc_real(N); } \
static void free(void *p) { fftw_free(p); } \ static void free(void *p) { fftw_free(p); } \
\ \
static void execute(plan_type p) { prefix ## _execute(p); } \ static void execute(plan_type p) { prefix ## _execute(p); } \