summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-09-10 03:28:35 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-09-10 03:28:35 +0200
commit3f9c5017abf3c4279780f685580a334574e6d760 (patch)
treea54540a8549542bf5385ae5b17878949b011aae4 /README.md
parent2ecbd2bfb27060b6f45196d8481fd0ccdbea730c (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.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index b7790c3..0e876d7 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
-# Open C++ Library
+# SIMD C++ Library
[![License: GPL-2.0](https://img.shields.io/badge/license-MIT-blue.svg)](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;
}
```