diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/fix/parser.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
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<char_type> key = in_tmp.substr(0, in_tmp.find("=")); + std::basic_string<char_type> val = in_tmp.substr(in_tmp.find("=") + 1); if (ret.msg_magic_.empty()) { |
