diff --git a/common/unit_test/Test_Utils.cpp b/common/unit_test/Test_Utils.cpp index 69b1ca4..ec16eec 100644 --- a/common/unit_test/Test_Utils.cpp +++ b/common/unit_test/Test_Utils.cpp @@ -563,6 +563,7 @@ TEST(ToArray, lvalue) { TEST(ToArray, rvalue) { ASSERT_EQ(KokkosFFT::Impl::to_array(std::array{1, 2}), (Kokkos::Array{1, 2})); +} template void test_are_pointers_aliasing() { diff --git a/fft/src/KokkosFFT_Host_plans.hpp b/fft/src/KokkosFFT_Host_plans.hpp index 3044083..66df39d 100644 --- a/fft/src/KokkosFFT_Host_plans.hpp +++ b/fft/src/KokkosFFT_Host_plans.hpp @@ -38,7 +38,7 @@ auto create_plan(const ExecutionSpace& exec_space, std::unique_ptr& plan, const InViewType& in, const OutViewType& out, BufferViewType&, InfoType&, Direction direction, axis_type axes, - shape_type s, bool is_in_place) { + shape_type s, bool is_inplace) { static_assert( KokkosFFT::Impl::are_operatable_views_v,