SWDEV-265469 - added constexpr constructor for dim3

Change-Id: I2e23a403f272d1ff0ade24fec11190d2f3244e5f
This commit is contained in:
Sarbojit Sarkar
2021-01-22 05:54:45 -05:00
committed by Sarbojit Sarkar
parent f174d98893
commit cee3e1aa37
@@ -313,7 +313,7 @@ typedef struct dim3 {
uint32_t y; ///< y
uint32_t z; ///< z
#ifdef __cplusplus
__host__ __device__ dim3(uint32_t _x = 1, uint32_t _y = 1, uint32_t _z = 1) : x(_x), y(_y), z(_z){};
constexpr __host__ __device__ dim3(uint32_t _x = 1, uint32_t _y = 1, uint32_t _z = 1) : x(_x), y(_y), z(_z){};
#endif
} dim3;