summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-25 10:39:37 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-11-25 10:39:37 +0100
commite20285288afb45c66144b45b1cf6ea6bc4642484 (patch)
tree148d342f184f980d5f6f53b0a1efb0a3316b930b /include
parent223e9f06e4db61b0bc79a6d56030bb9b6a681bfb (diff)
fix: ocl/fix: hotpatch for ascii_bytes_ -> bytes_
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include')
-rw-r--r--include/ocl/fix/parser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ocl/fix/parser.hpp b/include/ocl/fix/parser.hpp
index 5d4e5eb..09b58c1 100644
--- a/include/ocl/fix/parser.hpp
+++ b/include/ocl/fix/parser.hpp
@@ -77,7 +77,7 @@ namespace ocl::fix
if (basic_range.length_ < 0)
return std::basic_string<char_type>{};
- return std::basic_string<char_type>(basic_range.ascii_bytes_, basic_range.length_);
+ return std::basic_string<char_type>(basic_range.bytes_, basic_range.length_);
}
/// @brief a basic_range object containing the FIX packet values.