diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-10 03:28:35 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-10 03:28:35 +0200 |
| commit | 3f9c5017abf3c4279780f685580a334574e6d760 (patch) | |
| tree | a54540a8549542bf5385ae5b17878949b011aae4 /README.md | |
| parent | 2ecbd2bfb27060b6f45196d8481fd0ccdbea730c (diff) | |
feat:! breaking changes in the `opt` module. Fix `println` in `io`
module.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,10 +1,10 @@ -# Open C++ Library +# SIMD C++ Library [](LICENSE) ## Brief: -A C++ library with additional modules for your C++ SDLC. +A C++ library with additional modules for your C++ SDLC. Based on the Open C++ Library. ## Requirements: @@ -21,10 +21,10 @@ A C++ library with additional modules for your C++ SDLC. int main(int argc, char** argv) { - auto opt = ocl::opt(ocl::eval_eq(50, 50)).expect("ocl::eval_eq, does not match!"); + auto opt = ocl::opt(ocl::eval_eq(50, 50)).try_or_throw("ocl::eval_eq, does not match!"); opt = ocl::opt(ocl::eval_eq(50, 40)); - opt.expect("this time it doesn't."); - + opt.try_or_throw("this time it doesn't."); + return EXIT_SUCCESS; } ``` |
