From fbda49eea45ce08b9a72744c04761e1556ebd2fa Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Tue, 26 Aug 2025 16:16:59 +0200 Subject: fix: parser.hpp: zero initialize variables of `basic_range` Signed-off-by: Amlal El Mahrouss --- dev/lib/fix/parser.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/lib') diff --git a/dev/lib/fix/parser.hpp b/dev/lib/fix/parser.hpp index 1ace160..ad6870a 100644 --- a/dev/lib/fix/parser.hpp +++ b/dev/lib/fix/parser.hpp @@ -60,8 +60,8 @@ namespace snu::fix template struct basic_range final { - char_type* bytes_; - size_t length_; + char_type* bytes_{nullptr}; + size_t length_{}; bool is_valid() noexcept { -- cgit v1.2.3