diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-30 08:40:02 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-30 08:40:02 +0200 |
| commit | fdfaef9deacdca654662463d03b415e045ce2297 (patch) | |
| tree | 1173c371c943229ebfae23829279d27fc49387be /dev | |
| parent | 0966efb179385b604f1404eed36311f3c4b6e545 (diff) | |
fix: chunk_string: use `class` instead of `struct`
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/lib/utility/chunk_string.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp index 958d7a8..130bd44 100644 --- a/dev/lib/utility/chunk_string.hpp +++ b/dev/lib/utility/chunk_string.hpp @@ -16,7 +16,7 @@ namespace ocl class basic_chunk_string; template <typename char_type, std::size_t max_chunk_size> - struct basic_chunk_string final + class basic_chunk_string final { private: char_type packed_chunks_[max_chunk_size / 4]; |
