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/io | |
| 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/io')
| -rw-r--r-- | dev/lib/io/print.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/lib/io/print.hpp b/dev/lib/io/print.hpp index 307c06f..8463b6f 100644 --- a/dev/lib/io/print.hpp +++ b/dev/lib/io/print.hpp @@ -5,13 +5,13 @@ * Copyright 2025 */ -#ifndef _OCL_PRINT_HPP -#define _OCL_PRINT_HPP +#ifndef _SCL_PRINT_HPP +#define _SCL_PRINT_HPP #include <iostream> #include <ostream> -namespace ocl::io +namespace scl::io { template <typename T, typename... Args> inline void print(T fmt, Args... other) noexcept @@ -37,6 +37,6 @@ namespace ocl::io print(fmt...); print(); } -} // namespace ocl::io +} // namespace scl::io -#endif // ifndef _OCL_PRINT_HPP +#endif // ifndef _SCL_PRINT_HPP |
