Skip to content
Snippets Groups Projects
Commit 6f66e9e0 authored by Mark Winter's avatar Mark Winter
Browse files

Removed problematic ENABLE_IF in Vec.h (possibly nvcc compatibility problem)

parent 69a79d68
Branches
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ public: ...@@ -70,7 +70,7 @@ public:
{} {}
#ifdef __CUDACC__ #ifdef __CUDACC__
template<typename V = DIM3_ELEM_TYPE, ENABLE_CHK(NON_NARROWING(T,V))> template<typename V = DIM3_ELEM_TYPE>
MIXED_PREFIX operator dim3() const MIXED_PREFIX operator dim3() const
{ {
return dim3{static_cast<V>(x),static_cast<V>(y),static_cast<V>(z)}; return dim3{static_cast<V>(x),static_cast<V>(y),static_cast<V>(z)};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment