summaryrefslogtreecommitdiffhomepage
path: root/include/ocl/fix/parser.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-23 11:06:30 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-23 11:06:30 +0100
commit7303fccbc8df09aa1ac8476126e4cc0ae1f0ef62 (patch)
tree2dfdbe629ee2620f6f76bee733d9a6755e843eaa /include/ocl/fix/parser.hpp
parent478ce0a595caefb46ca2beadb3630cc7957d80f1 (diff)
fix: Fix FIX impl.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ocl/fix/parser.hpp')
-rw-r--r--include/ocl/fix/parser.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ocl/fix/parser.hpp b/include/ocl/fix/parser.hpp
index 4800a86..a39b203 100644
--- a/include/ocl/fix/parser.hpp
+++ b/include/ocl/fix/parser.hpp
@@ -104,12 +104,12 @@ namespace ocl::fix
visitor() = default;
/// \brief Alias of visit.
- range_buffer operator()(const boost::string_view& in);
+ range_buffer operator()(const std::string& in);
/// @brief Visits a FIX message and parse it into a range_buffer object.
/// @param in The input FIX message as a string.
/// @warning This function may throw exceptions.
- range_buffer visit(const boost::string_view& in);
+ range_buffer visit(const std::string& in);
};
#if !defined(OCL_FIX_HAS_IMPL)