summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/fix
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-22 07:55:15 -0500
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-22 07:55:20 -0500
commit10b3e4fbd0779833d3f2c7cff3c1d802664fa358 (patch)
tree9b520432ff0651c258b3c1a215606cf8b3a5915f /dev/lib/fix
parent32af6ab79fe52efa6fc773a672e2732388999692 (diff)
feat: lib: logic module improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/lib/fix')
-rw-r--r--dev/lib/fix/fix.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/dev/lib/fix/fix.hpp b/dev/lib/fix/fix.hpp
index 4f02e28..08360d5 100644
--- a/dev/lib/fix/fix.hpp
+++ b/dev/lib/fix/fix.hpp
@@ -35,22 +35,22 @@ namespace ocl::fix
namespace detail
{
template <typename char_type = char>
- const char_type* begin_fix();
+ const char_type* begin_fix() noexcept;
template <>
- inline const char* begin_fix<char>()
+ inline const char* begin_fix<char>() noexcept
{
return "FIX.4.2";
}
template <>
- inline const char16_t* begin_fix<char16_t>()
+ inline const char16_t* begin_fix<char16_t>() noexcept
{
return u"FIX.4.2";
}
template <>
- inline const char8_t* begin_fix<char8_t>()
+ inline const char8_t* begin_fix<char8_t>() noexcept
{
return u8"FIX.4.2";
}