Skip to content

Commit 88fd329

Browse files
[ESIMD] Fix - inconsistent 'is_one_of_t' declaration (#6927)
1 parent 4926454 commit 88fd329

File tree

1 file changed

+1
-1
lines changed
  • sycl/include/sycl/ext/intel/experimental/esimd

1 file changed

+1
-1
lines changed

sycl/include/sycl/ext/intel/experimental/esimd/common.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ enum class cache_hint : uint8_t {
214214
namespace detail {
215215

216216
template <cache_hint Hint> class cache_hint_wrap {
217-
template <cache_hint...> class is_one_of_t;
217+
template <cache_hint...> struct is_one_of_t;
218218
template <cache_hint Last>
219219
struct is_one_of_t<Last>
220220
: std::conditional<Last == Hint, std::true_type, std::false_type>::type {

0 commit comments

Comments
 (0)