diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:38:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-14 04:38:06 +0200 |
| commit | 8939837390193e86c52299048caec9c7722178e6 (patch) | |
| tree | db923caaec3762fbb68290fd1ae94cb1465378e7 /dev/lib/utility/chunk_string.hpp | |
| parent | 94799223495b9842bca67e1a6ecf611cec3ee771 (diff) | |
| parent | a786997f304745ce3766a82be06dc6a5d0c2f02c (diff) | |
Merge pull request #2 from snu-systems-corp/dev
feat: scl: major refactors and new version of SCL.
Diffstat (limited to 'dev/lib/utility/chunk_string.hpp')
| -rw-r--r-- | dev/lib/utility/chunk_string.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp index 4fe5cc2..c5bf5c6 100644 --- a/dev/lib/utility/chunk_string.hpp +++ b/dev/lib/utility/chunk_string.hpp @@ -10,7 +10,7 @@ #include <lib/core/includes.hpp> -namespace ocl +namespace scl { template <typename char_type, std::size_t max_chunk_size = 8196> class basic_chunk_string; @@ -89,7 +89,7 @@ namespace ocl void print() noexcept { - ocl::io::print(packed_chunks_); + scl::io::print(packed_chunks_); } }; @@ -98,5 +98,5 @@ namespace ocl { fmt.print(); } -} // namespace ocl +} // namespace scl #endif // ifndef OCL_UTILITY_CHUNK_STRING_HPP |
