Skip to content

Commit

Permalink
fix: remove const
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Dec 4, 2024
1 parent 269e2f2 commit 1d22abd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fft/src/KokkosFFT_FFTW_Types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct ScopedFFTWPlanType {
}
}

plan_type &plan() const { return m_plan; }
plan_type &plan() { return m_plan; }

template <typename InScalarType, typename OutScalarType>
void create(const ExecutionSpace &exec_space, int rank, const int *n,
Expand Down

0 comments on commit 1d22abd

Please sign in to comment.