From 10b3e4fbd0779833d3f2c7cff3c1d802664fa358 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 22 Nov 2025 07:55:15 -0500 Subject: feat: lib: logic module improvements. Signed-off-by: Amlal El Mahrouss --- dev/lib/fix/fix.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dev/lib/fix') 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 - const char_type* begin_fix(); + const char_type* begin_fix() noexcept; template <> - inline const char* begin_fix() + inline const char* begin_fix() noexcept { return "FIX.4.2"; } template <> - inline const char16_t* begin_fix() + inline const char16_t* begin_fix() noexcept { return u"FIX.4.2"; } template <> - inline const char8_t* begin_fix() + inline const char8_t* begin_fix() noexcept { return u8"FIX.4.2"; } -- cgit v1.2.3