Skip to content

Commit

Permalink
remove redundant inline keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
mreineck committed Dec 30, 2024
1 parent ee1f802 commit d38e691
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/finufft/finufft_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,11 @@ template<typename TF> struct FINUFFT_PLAN_T { // the main plan class, fully C++

std::array<UBIGINT, 3> mstu; // number of modes in x/y/z dir (historical CMCL name) =
// N1/N2/N3
inline UBIGINT N() const { return mstu[0]*mstu[1]*mstu[2]; } // total # modes (prod of above three)
UBIGINT N() const { return mstu[0]*mstu[1]*mstu[2]; } // total # modes (prod of above three)

std::array<UBIGINT, 3> nf123{1, 1, 1}; // size of internal fine grid in x/y/z
// direction
inline UBIGINT nf() const { return nf123[0]*nf123[1]*nf123[2]; } // total # fine grid points (product of the above three)
UBIGINT nf() const { return nf123[0]*nf123[1]*nf123[2]; } // total # fine grid points (product of the above three)

int fftSign; // sign in exponential for NUFFT defn, guaranteed to be +-1

Expand Down

0 comments on commit d38e691

Please sign in to comment.