We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11987b8 + b612458 commit 4a42ebbCopy full SHA for 4a42ebb
include/pmacc/traits/GetComponentsType.hpp
@@ -35,8 +35,11 @@ namespace pmacc
35
* If T_Type is fundamental c++ type, the identity is returned
36
*
37
* Attention: do not defines this trait for structs with different attributes inside
38
+ *
39
+ * Intentionally not using std::is_fundamental_v<T_Type> due to a compiler bug in cuda-13/gcc-11 combination,
40
+ * ref. https://github.com/ComputationalRadiationPhysics/picongpu/issues/5554
41
*/
- template<typename T_Type, bool T_IsFundamental = std::is_fundamental_v<T_Type>>
42
+ template<typename T_Type, bool T_IsFundamental = std::is_fundamental<T_Type>::value>
43
struct GetComponentsType;
44
45
template<typename T_Type>
0 commit comments