Skip to content

Commit 0e37b52

Browse files
fix: reduce MeadeResponse capacity to 64 for memory optimization
1 parent 0ee2969 commit 0e37b52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/core/meade/MeadeParser.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace meade
3939
class MeadeResponse
4040
{
4141
public:
42-
static constexpr size_t Capacity = 200;
42+
static constexpr size_t Capacity = 64;
4343

4444
MeadeResponse() : _length(0)
4545
{

0 commit comments

Comments
 (0)