From a82b834fc47fd751e33cc16dffdd539b7a4eae54 Mon Sep 17 00:00:00 2001 From: searlmc1 Date: Wed, 3 Jul 2019 17:44:26 -0700 Subject: [PATCH] Fix typo ( T in Vec3_cmp = needs to be int ). (#1203) Typo introduced here: commit e4744692134c55231f32eb4b82c2bce01ce56708 Author: Alex Voicu Date: Mon Jun 24 20:02:09 2019 -0500 Put 3-wide vector types on a ketogenic diet. (#1180) [ROCm/hip commit: a9870f0465ffb9562db4cb2744dd4dd3f7e55255] --- projects/hip/include/hip/hcc_detail/hip_vector_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/include/hip/hcc_detail/hip_vector_types.h b/projects/hip/include/hip/hcc_detail/hip_vector_types.h index 0d424965ca..2ce216e409 100644 --- a/projects/hip/include/hip/hcc_detail/hip_vector_types.h +++ b/projects/hip/include/hip/hcc_detail/hip_vector_types.h @@ -210,7 +210,7 @@ THE SOFTWARE. return *this; } - using Vec3_cmp = T __NATIVE_VECTOR__(3, int); + using Vec3_cmp = int __NATIVE_VECTOR__(3, int); __host__ __device__ Vec3_cmp operator==(const Native_vec_& x) const noexcept {