From 90d7c48ed3d8a767f768f6af20a8e49ba048c228 Mon Sep 17 00:00:00 2001 From: ROCm CI Service Account <66695075+rocm-ci@users.noreply.github.com> Date: Tue, 29 Nov 2022 06:15:34 +0530 Subject: [PATCH] SWDEV-345571 - Fix template parameter redefines default argument (#3101) Change-Id: I1f22f0dd17831d31d9119e878f698312f29ce036 [ROCm/hip-tests commit: 5af8d1f92abcb2250d7a417ce0862440c9a488d9] --- projects/hip-tests/catch/unit/deviceLib/CMakeLists.txt | 1 - projects/hip-tests/catch/unit/deviceLib/vectorTypesDevice.cc | 2 -- 2 files changed, 3 deletions(-) diff --git a/projects/hip-tests/catch/unit/deviceLib/CMakeLists.txt b/projects/hip-tests/catch/unit/deviceLib/CMakeLists.txt index 7355023d09..2ee700545c 100644 --- a/projects/hip-tests/catch/unit/deviceLib/CMakeLists.txt +++ b/projects/hip-tests/catch/unit/deviceLib/CMakeLists.txt @@ -23,7 +23,6 @@ endif() # AMD only tests set(AMD_TEST_SRC unsafeAtomicAdd.cc - vectorTypesDevice.cc mbcnt.cc bitExtract.cc bitInsert.cc diff --git a/projects/hip-tests/catch/unit/deviceLib/vectorTypesDevice.cc b/projects/hip-tests/catch/unit/deviceLib/vectorTypesDevice.cc index 5a842809f4..5da42bc6bc 100644 --- a/projects/hip-tests/catch/unit/deviceLib/vectorTypesDevice.cc +++ b/projects/hip-tests/catch/unit/deviceLib/vectorTypesDevice.cc @@ -26,8 +26,6 @@ THE SOFTWARE. #include #include -template using Enable_if_t = typename std::enable_if::type; - using namespace std; template __device__ typename std::add_rvalue_reference::type _declval() noexcept;