Commit 55a81942 authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Remove 'static' specifiers

parent dea4506e
......@@ -49,8 +49,8 @@ template <
typename = std::enable_if_t<std::is_class_v<Object> && std::is_trivially_copyable_v<Object>>>
__device__ auto readfirstlane(const Object& obj)
{
static constexpr std::size_t SgprSize = 4;
static constexpr std::size_t ObjectSize = sizeof(Object);
constexpr std::size_t SgprSize = 4;
constexpr std::size_t ObjectSize = sizeof(Object);
using Sgpr = detail::get_signed_int_t<SgprSize>;
......
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