summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:35:26 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-10-14 04:35:26 +0200
commita786997f304745ce3766a82be06dc6a5d0c2f02c (patch)
treedb923caaec3762fbb68290fd1ae94cb1465378e7 /README.md
parentfa4748e414e9494442f9bcde9c659d3951af19c0 (diff)
feat: scl: major refactors and new version of SCL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0e876d7..20fee1a 100644
--- a/README.md
+++ b/README.md
@@ -21,8 +21,8 @@ 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!");
- opt = ocl::opt(ocl::eval_eq(50, 40));
+ auto opt = scl::opt(scl::eval_eq(50, 50)).try_or_throw("scl::eval_eq, does not match!");
+ opt = scl::opt(scl::eval_eq(50, 40));
opt.try_or_throw("this time it doesn't.");
return EXIT_SUCCESS;