summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-17 10:33:21 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-17 10:34:20 +0100
commit8535440f6bebdf785683b4a62073f9465ca7e9cc (patch)
treeb2055ec8ec5f0a1e2387fc8448038d9877df5fbb /README.md
parent3827ae4e821ff3758d1eaf2dbacc55a22f802731 (diff)
fix: fixing merge conflicts.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0e876d7..263f494 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
## Brief:
-A C++ library with additional modules for your C++ SDLC. Based on the Open C++ Library.
+A C++ library with additional modules for your C++ SDLC.
## Requirements:
@@ -21,9 +21,9 @@ A C++ library with additional modules for your C++ SDLC. Based on the Open C++ L
int main(int argc, char** argv)
{
- auto opt = ocl::opt(ocl::eval_eq(50, 50)).try_or_throw("ocl::eval_eq, does not match!");
+ auto opt = ocl::opt(ocl::eval_eq(50, 50)).expect("ocl::eval_eq, does not match!");
opt = ocl::opt(ocl::eval_eq(50, 40));
- opt.try_or_throw("this time it doesn't.");
+ opt.expect("this time it doesn't.");
return EXIT_SUCCESS;
}