SWDEV-268531 - Fixing shadow variable warning in vector_types

Change-Id: Ic57e22853529a953582c9194d09133a5aab989aa
このコミットが含まれているのは:
Jatin Chaudhary
2021-02-15 05:23:46 -08:00
committed by Jatin Chaudhary
コミット 3f6bf4c260
+2 -2
ファイルの表示
@@ -642,8 +642,8 @@ THE SOFTWARE.
__host__ __device__
explicit
constexpr
HIP_vector_type(U x) noexcept
: HIP_vector_base<T, rank>{static_cast<T>(x)}
HIP_vector_type(U x_) noexcept
: HIP_vector_base<T, rank>{static_cast<T>(x_)}
{}
template< // TODO: constrain based on type as well.
typename... Us,