File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -180,17 +180,6 @@ class __SYCL_EBO vec
180
180
private:
181
181
#endif // __SYCL_DEVICE_ONLY__
182
182
183
- // SizeChecker is needed for vec(const argTN &... args) ctor to validate args.
184
- template <int Counter, int MaxValue, class ...>
185
- struct SizeChecker : std::conditional_t <Counter == MaxValue, std::true_type,
186
- std::false_type> {};
187
-
188
- template <int Counter, int MaxValue, typename DataT_, class ... tail>
189
- struct SizeChecker <Counter, MaxValue, DataT_, tail...>
190
- : std::conditional_t <Counter + 1 <= MaxValue,
191
- SizeChecker<Counter + 1 , MaxValue, tail...>,
192
- std::false_type> {};
193
-
194
183
// Utility trait for creating an std::array from an vector argument.
195
184
template <typename DataT_, typename T> class FlattenVecArg {
196
185
template <std::size_t ... Is>
You can’t perform that action at this time.
0 commit comments