diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-10 12:02:49 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-07-10 12:02:49 +0200 |
| commit | 1c4bcb0ca012bebe7c7b9408aa85bb5b089e4619 (patch) | |
| tree | 008694e208a79ee95c73d2f43832b3e5573bf737 | |
| parent | be9f0a30c110737760c6cd8cea19cca558be85af (diff) | |
fix: use `visitor::soh` instead of just `soh`
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | lib/fix/parser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fix/parser.hpp b/lib/fix/parser.hpp index 091d8a9..bca5353 100644 --- a/lib/fix/parser.hpp +++ b/lib/fix/parser.hpp @@ -141,7 +141,7 @@ namespace snu::fix { for (auto& ch : in) { - if (ch != soh) + if (ch != visitor::soh) { in_tmp += ch; continue; |
