Commit 8e231b9b authored by Bartlomiej Wroblewski's avatar Bartlomiej Wroblewski
Browse files

Review: Remove typo

parent 7d0eede1
...@@ -20,7 +20,7 @@ __host__ __device__ constexpr Y type_convert(X x) ...@@ -20,7 +20,7 @@ __host__ __device__ constexpr Y type_convert(X x)
return static_cast<Y>(x); return static_cast<Y>(x);
} }
// Convert X to Y, either X or Y is a const data type.. // Convert X to Y, either X or Y is a const data type.
template <typename Y, template <typename Y,
typename X, typename X,
std::enable_if_t<std::is_const_v<Y> || std::is_const_v<X>, bool> = false> std::enable_if_t<std::is_const_v<Y> || std::is_const_v<X>, bool> = false>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment