diff options
Diffstat (limited to 'include/ocl')
| -rw-r--r-- | include/ocl/tproc/rope.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/ocl/tproc/rope.hpp b/include/ocl/tproc/rope.hpp index 2a02f05..05e5399 100644 --- a/include/ocl/tproc/rope.hpp +++ b/include/ocl/tproc/rope.hpp @@ -194,4 +194,16 @@ namespace ocl::tproc } // namespace ocl::tproc +inline std::ostream & operator<<(std::ostream& os, ocl::tproc::crope& r){ + os << r.data(); + return os; +} + +inline std::wostream & operator<<(std::wostream& os, ocl::tproc::wrope& r){ + os << r.data(); + return os; +} + +#include "rope.inl" + #endif // __OCL_TPROC_ROPE_HPP |
