diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-17 10:33:21 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-11-17 10:34:20 +0100 |
| commit | 8535440f6bebdf785683b4a62073f9465ca7e9cc (patch) | |
| tree | b2055ec8ec5f0a1e2387fc8448038d9877df5fbb /README.md | |
| parent | 3827ae4e821ff3758d1eaf2dbacc55a22f802731 (diff) | |
fix: fixing merge conflicts.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |
