Skip to content

Commit

Permalink
Removed the no-longer-relevant comment from the code.
Browse files Browse the repository at this point in the history
  • Loading branch information
krasznaa committed Jul 8, 2021
1 parent fed68ef commit 08223c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/include/vecmem/containers/static_array.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -281,13 +281,13 @@ class static_array {
private:
/**
* @brief Private helper-constructor for the parameter pack constructor.
*
* HACK: This template pack is defined as std::size_t instead of
* size_type because the SYCL compiler refuses to accept it otherwise.
*/
template <typename Tp1, typename... Tp>
VECMEM_HOST_AND_DEVICE void static_array_impl(size_type i, Tp1 &&a1,
Tp &&... a);
/**
* @brief Private helper-constructor for the parameter pack constructor.
*/
template <typename Tp1>
VECMEM_HOST_AND_DEVICE void static_array_impl(size_type i, Tp1 &&a1);

Expand Down

0 comments on commit 08223c7

Please sign in to comment.