Skip to content

Commit

Permalink
fix: missing & in _destroy_info for SYCL
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuuichi Asahi committed Jul 4, 2024
1 parent 5404d63 commit aa6351a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fft/src/KokkosFFT_SYCL_plans.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ template <
typename ExecutionSpace, typename InfoType,
std::enable_if_t<std::is_same_v<ExecutionSpace, Kokkos::Experimental::SYCL>,
std::nullptr_t> = nullptr>
void _destroy_info(InfoType) {
void _destroy_info(InfoType&) {
// not used, no finalization is required
}
} // namespace Impl
Expand Down

0 comments on commit aa6351a

Please sign in to comment.