Skip to content
Snippets Groups Projects

Updates required for QAT

Merged Olivier BICHLER requested to merge qat into dev
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -160,7 +160,7 @@ public:
if (i == SIZE-1) {
// Workaround for NVCC from 12.2.1 to 12.4.1
// error: no suitable constructor exists to convert from "const char *" to "std::type_info"
typename std::tuple_element<SIZE-1,std::tuple<T...>>::type dummy;
typename std::tuple_element<SIZE-1,std::tuple<T...>>::type dummy{};
return typeid(dummy);
//return typeid(typename std::tuple_element<SIZE-1,std::tuple<T...>>::type);
}
Loading