Skip to content
Snippets Groups Projects
Commit 4800dcb0 authored by Frederik Hennig's avatar Frederik Hennig
Browse files

fix compiler error

parent a171e6f4
No related merge requests found
Pipeline #77798 failed with stages
in 8 minutes and 31 seconds
...@@ -88,8 +88,6 @@ struct SelectStandardAllocator< memtag::unified > ...@@ -88,8 +88,6 @@ struct SelectStandardAllocator< memtag::unified >
} // namespace detail } // namespace detail
using MemTag = memtag::MemTag;
/** /**
* @brief Standard allocator implementation for a given memory tag and value type. * @brief Standard allocator implementation for a given memory tag and value type.
* *
......
...@@ -226,7 +226,7 @@ class GpuPdfFieldPackInfo(CustomGenerator): ...@@ -226,7 +226,7 @@ class GpuPdfFieldPackInfo(CustomGenerator):
.inline() .inline()
.const() .const()
.params(dir) .params(dir)
.returns(uint_t)(f"return {self._field.index_shape[0]};"), .returns(uint_t)(f"return {self._field.index_shape[0]};"), # FIXME: Wrong!
) )
) )
......
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