diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-21 15:21:55 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-08-21 15:21:55 +0200 |
| commit | f77417703f35b4fb28f8599dce1f1a5fd50a8604 (patch) | |
| tree | d6370bf45d1eb9b92ac360e9cd5dd7cb06c68a4d /dev/lib | |
| parent | 6cb049d915b8479d5c21ad23a03b315733688370 (diff) | |
fix: redundant std::cout in print.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib')
| -rw-r--r-- | dev/lib/utility/chunk_string.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/lib/utility/chunk_string.hpp b/dev/lib/utility/chunk_string.hpp index 0539aa8..6b060ae 100644 --- a/dev/lib/utility/chunk_string.hpp +++ b/dev/lib/utility/chunk_string.hpp @@ -73,7 +73,7 @@ namespace snu template <typename char_type> inline void print(basic_chunk_string<char_type>& fmt) noexcept { - std::cout << fmt.print(); + fmt.print(); } } // namespace snu #endif // ifndef SOCL_UTILITY_CHUNK_STRING_HPP
\ No newline at end of file |
