From 87f10dad540971c4aa22d892c676dce590ca189a Mon Sep 17 00:00:00 2001 From: Amlal Date: Sat, 9 Aug 2025 21:54:20 +0200 Subject: feat: move network.hpp to net/ and working on url.hpp Signed-off-by: Amlal --- dev/lib/fix/parser.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dev/lib/fix/parser.hpp') diff --git a/dev/lib/fix/parser.hpp b/dev/lib/fix/parser.hpp index 5701783..f0f7141 100644 --- a/dev/lib/fix/parser.hpp +++ b/dev/lib/fix/parser.hpp @@ -27,7 +27,7 @@ namespace snu::fix struct basic_range; template - struct basic_range_data; + class basic_range_data; /// @brief Buffer+Length structure template @@ -65,7 +65,7 @@ namespace snu::fix bool is_valid() { - return bytes_ && length_ > 0; + return this->bytes_ && this->length_ > 0; } operator bool() @@ -98,7 +98,7 @@ namespace snu::fix static inline const char_type* begin = detail::begin_fix(); explicit basic_range_data() = default; - ~basic_range_data() = default; + ~basic_range_data() = default; basic_range_data& operator=(const basic_range_data&) = default; basic_range_data(const basic_range_data&) = default; -- cgit v1.2.3