diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 11:50:14 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-24 11:50:14 +0100 |
| commit | 543f288e808b575f97efd56f2d14c495b49459f3 (patch) | |
| tree | 0c97c6252075b86167941d23c4d2eb13294650c1 | |
| parent | 5d69778988ed44f62edbaaa4f95cf8dcdb0e8b45 (diff) | |
fix: rope_fwd.inl: specify all needed parameters for template.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | include/ocl/tproc/detail/rope_fwd.inl | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/ocl/tproc/detail/rope_fwd.inl b/include/ocl/tproc/detail/rope_fwd.inl index 5ca6bf4..2d11c14 100644 --- a/include/ocl/tproc/detail/rope_fwd.inl +++ b/include/ocl/tproc/detail/rope_fwd.inl @@ -8,12 +8,15 @@ namespace ocl { -template <class CharT> struct basic_rope<CharT>::tree_impl {}; +template <class CharT, class Traits, class Allocator> +struct basic_rope<CharT, Traits, Allocator>::tree_impl {}; -template <class CharT> basic_rope<CharT>::~basic_rope() = default; +template <class CharT, class Traits, class Allocator> +basic_rope<CharT, Traits, Allocator>::~basic_rope() = default; -template <class CharT> -basic_rope<CharT>::basic_rope(const boost::basic_string_view<CharT> &in) {} +template <class CharT, class Traits, class Allocator> +basic_rope<CharT, Traits, Allocator>::basic_rope( + const boost::basic_string_view<CharT> &in) {} } // namespace ocl |
