summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/logic/opt.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-20 19:42:17 -0500
committerGitHub <noreply@github.com>2025-11-20 19:42:17 -0500
commit98a0b6ceed0f8d432cae61559884613df539a0a1 (patch)
tree10583ee7130379feef0cd440266142fb6eede906 /dev/lib/logic/opt.hpp
parent3bc2fca2c9beff13586b8bf3089ce439acb09de1 (diff)
parent682d03f0b8e22168e2ccd2c4a35efae230d40eb0 (diff)
Merge pull request #13 from amlel-el-mahrouss/developv1.0.47
release: OCL 'Cork'
Diffstat (limited to 'dev/lib/logic/opt.hpp')
-rw-r--r--dev/lib/logic/opt.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/lib/logic/opt.hpp b/dev/lib/logic/opt.hpp
index ceee917..19f02df 100644
--- a/dev/lib/logic/opt.hpp
+++ b/dev/lib/logic/opt.hpp
@@ -1,7 +1,7 @@
/*
* File: opt.hpp
* Author: Amlal El Mahrouss,
- * Copyright 2023-2025, Amlal El Mahrouss
+ * Copyright 2023-2025, Amlal El Mahrouss, Licensed under the Boost Software License
*/
#ifndef _OCL_OPT_HPP
@@ -120,12 +120,12 @@ namespace ocl
return greater_than(std::forward<Lst>(arg)...) ? return_type::okay : return_type::err;
}
- inline return_type eval_true()
+ inline return_type eval_true() noexcept
{
return return_type::okay;
}
- inline return_type eval_false()
+ inline return_type eval_false() noexcept
{
return return_type::err;
}