We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d711dee + 9d594fc commit 97807bcCopy full SHA for 97807bc
med/field.hpp
@@ -239,10 +239,10 @@ class multi_field : public detail::define_meta_info<META_INFO>
239
return &m_tail->value;
240
}
241
242
- field_value m_fields[inplace];
243
- std::size_t m_count {0};
244
field_value* m_head {nullptr};
245
field_value* m_tail {nullptr};
+ std::size_t m_count {0};
+ field_value m_fields[inplace];
246
};
247
248
} //end: namespace med
med/octet_string.hpp
@@ -99,9 +99,9 @@ class octets_var_intern
99
100
101
private:
102
- uint8_t m_data[MAX_LEN];
103
num_octs_t m_size {0};
104
bool m_is_set {false};
+ uint8_t m_data[MAX_LEN];
105
106
107
//fixed length octets with external storage
0 commit comments