Skip to content

Commit

Permalink
fix inconsistent prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
mreineck committed Sep 24, 2024
1 parent f6fab70 commit 3b120a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/finufft/spreadinterp.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ FINUFFT_EXPORT int FINUFFT_CDECL indexSort(BIGINT *sort_indices, UBIGINT N1, UBI
const finufft_spread_opts &opts);
template<typename T>
FINUFFT_EXPORT int FINUFFT_CDECL spreadinterpSorted(
const BIGINT *sort_indices, UBIGINT N1, UBIGINT N2, UBIGINT N3,
T *FINUFFT_RESTRICT data_uniform, UBIGINT N, T *FINUFFT_RESTRICT kx,
T *FINUFFT_RESTRICT ky, T *FINUFFT_RESTRICT kz, T *FINUFFT_RESTRICT data_nonuniform,
const BIGINT *sort_indices, const UBIGINT N1, const UBIGINT N2, const UBIGINT N3,
T *data_uniform, const UBIGINT M, T *FINUFFT_RESTRICT kx, T *FINUFFT_RESTRICT ky,
T *FINUFFT_RESTRICT kz, T *FINUFFT_RESTRICT data_nonuniform,
const finufft_spread_opts &opts, int did_sort);
template<typename T>
FINUFFT_EXPORT T FINUFFT_CDECL evaluate_kernel(T x, const finufft_spread_opts &opts);
Expand Down

0 comments on commit 3b120a7

Please sign in to comment.