summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ocl/tproc/detail/rope_fwd.inl11
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