SWDEV-345571 - Fix template parameter redefines default argument (#3101)

Change-Id: I1f22f0dd17831d31d9119e878f698312f29ce036


[ROCm/hip-tests commit: 5af8d1f92a]
This commit is contained in:
ROCm CI Service Account
2022-11-29 06:15:34 +05:30
کامیت شده توسط GitHub
والد e41399533b
کامیت 90d7c48ed3
2فایلهای تغییر یافته به همراه0 افزوده شده و 3 حذف شده
@@ -23,7 +23,6 @@ endif()
# AMD only tests
set(AMD_TEST_SRC
unsafeAtomicAdd.cc
vectorTypesDevice.cc
mbcnt.cc
bitExtract.cc
bitInsert.cc
@@ -26,8 +26,6 @@ THE SOFTWARE.
#include <type_traits>
#include <utility>
template <bool b, typename T = void> using Enable_if_t = typename std::enable_if<b, T>::type;
using namespace std;
template <class T> __device__ typename std::add_rvalue_reference<T>::type _declval() noexcept;