diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:28:55 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-27 12:31:41 +0200 |
| commit | b4f35dbe44e07b597c3e7bb6d7562757069a7cb4 (patch) | |
| tree | 88af99a2cca9c514536b4b61785fa67b3543429c /dev/lib/utility/chunk_string.hpp | |
| parent | fbda49eea45ce08b9a72744c04761e1556ebd2fa (diff) | |
feat: moved SOCL into OCL, without SNU's baggage.v1.0.41
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/utility/chunk_string.hpp')
| -rw-r--r-- | dev/lib/utility/chunk_string.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp index 79e0dd6..79a3881 100644 --- a/dev/lib/utility/chunk_string.hpp +++ b/dev/lib/utility/chunk_string.hpp @@ -1,17 +1,17 @@ /* * File: core/chunk_string.hpp * Purpose: String implementation for the SOCL C++ library. - * Author: Amlal El Mahrouss (founder@snu.systems) - * Copyright 2025, Amlal El Mahrouss and SNU Systems Corp. + * Author: Amlal El Mahrouss (amlal@nekernel.org) + * Copyright 2025, Amlal El Mahrouss */ -#ifndef SOCL_UTILITY_CHUNK_STRING_HPP -#define SOCL_UTILITY_CHUNK_STRING_HPP +#ifndef OCL_UTILITY_CHUNK_STRING_HPP +#define OCL_UTILITY_CHUNK_STRING_HPP #include <lib/core/includes.hpp> #include <boost/container/flat_set.hpp> -namespace snu +namespace ocl { template <typename char_type> class basic_chunk_string; @@ -74,7 +74,7 @@ namespace snu void print() noexcept { - snu::io::print(packed_chunks_); + ocl::io::print(packed_chunks_); if (next_chunk_string_) this->next_chunk_string_->print(); @@ -86,5 +86,5 @@ namespace snu { fmt.print(); } -} // namespace snu -#endif // ifndef SOCL_UTILITY_CHUNK_STRING_HPP
\ No newline at end of file +} // namespace ocl +#endif // ifndef OCL_UTILITY_CHUNK_STRING_HPP
\ No newline at end of file |
