diff --git a/common/unit_test/Test_Utils.cpp b/common/unit_test/Test_Utils.cpp index e4c66453..8861e4c0 100644 --- a/common/unit_test/Test_Utils.cpp +++ b/common/unit_test/Test_Utils.cpp @@ -567,8 +567,8 @@ TEST(ToArray, rvalue) { template void test_are_pointers_aliasing() { - using View1 = Kokkos::View; - using View2 = Kokkos::View; + using View1 = Kokkos::View; + using View2 = Kokkos::View; const int n1 = 10; // sizeof ValeuType2 is larger or equal to ValueType1 diff --git a/fft/src/KokkosFFT_Plans.hpp b/fft/src/KokkosFFT_Plans.hpp index e4d8a91b..f4b1e114 100644 --- a/fft/src/KokkosFFT_Plans.hpp +++ b/fft/src/KokkosFFT_Plans.hpp @@ -362,7 +362,8 @@ class Plan { // For the in-place Complex to Real transform, the output must be // reshaped to fit the original size (in.size() * 2) for correct // normalization - Kokkos::View out_tmp(out.data(), in.size() * 2); + Kokkos::View out_tmp(out.data(), + in.size() * 2); KokkosFFT::Impl::normalize(m_exec_space, out_tmp, m_direction, norm, m_fft_size); return;