From e23e9e7eb3a1e3876fd9d245b307dc81f16f904a Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 10 Jul 2025 11:55:45 +0200 Subject: fix: use `std::basic_string` instead of `std::string` Signed-off-by: Amlal El Mahrouss --- lib/fix/parser.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/fix/parser.hpp b/lib/fix/parser.hpp index 77e76fb..a9a42d2 100644 --- a/lib/fix/parser.hpp +++ b/lib/fix/parser.hpp @@ -137,8 +137,8 @@ namespace snu::fix continue; } - std::string key = in_tmp.substr(0, in_tmp.find("=")); - std::string val = in_tmp.substr(in_tmp.find("=") + 1); + std::basic_string key = in_tmp.substr(0, in_tmp.find("=")); + std::basic_string val = in_tmp.substr(in_tmp.find("=") + 1); if (ret.msg_magic_.empty()) { -- cgit v1.2.3