zlib support #9

Merged
Persson-dev merged 8 commits from zlib into main 2025-03-01 18:20:51 +00:00
Showing only changes of commit e8441205a4 - Show all commits

View File

@@ -166,7 +166,7 @@ class DataBuffer {
K newKey; K newKey;
V newValue; V newValue;
*this >> newKey >> newValue; *this >> newKey >> newValue;
data.insert({newKey, newValue}); data.emplace(newKey, newValue);
} }
return *this; return *this;
} }