summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/fix
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-22 13:11:56 -0500
committerGitHub <noreply@github.com>2025-11-22 13:11:56 -0500
commit9a70f32ddaec0eef99efbf7ff5597c2adf08f45a (patch)
tree1717d2b24d610b638cb70b12d7db74f15953f1fe /dev/lib/fix
parent8470a48ef4c6ea4b16e9a764aaedc7158f9c37ed (diff)
parent58dc03a47576601006c4870d1633bf35fc78176a (diff)
Merge pull request #17 from amlel-el-mahrouss/develop
feat: library improvements
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";
}