diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
| commit | a786997f304745ce3766a82be06dc6a5d0c2f02c (patch) | |
| tree | db923caaec3762fbb68290fd1ae94cb1465378e7 /dev/lib/except | |
| parent | fa4748e414e9494442f9bcde9c659d3951af19c0 (diff) | |
feat: scl: major refactors and new version of SCL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/except')
| -rw-r--r-- | dev/lib/except/error.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/lib/except/error.hpp b/dev/lib/except/error.hpp index 16bf5eb..31b9894 100644 --- a/dev/lib/except/error.hpp +++ b/dev/lib/except/error.hpp @@ -4,17 +4,17 @@ * Copyright 2023-2025, Amlal El Mahrouss */ -#ifndef _OCL_ERR_HPP -#define _OCL_ERR_HPP +#ifndef _SCL_ERR_HPP +#define _SCL_ERR_HPP #include <stdexcept> -namespace ocl +namespace scl { using runtime_error = std::runtime_error; using fix_error = runtime_error; using math_error = runtime_error; using cgi_error = runtime_error; -} // namespace ocl +} // namespace scl -#endif // _OCL_ERR_HPP
\ No newline at end of file +#endif // _SCL_ERR_HPP
\ No newline at end of file |
