We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f0ccf commit 424edfaCopy full SHA for 424edfa
1 file changed
libs/common/include/s25util/Serializer.h
@@ -108,20 +108,19 @@ class Serializer
108
std::string PopString();
109
std::string PopLongString();
110
111
-protected:
112
template<typename T>
113
T Pop();
114
115
116
void Push(T val);
117
+private:
118
/// Erweitert ggf. Speicher um add_length
119
void ExtendMemory(unsigned add_length) { EnsureSize(length_ + add_length); }
120
121
/// Makes sure the internal buffer is at least length bytes long
122
void EnsureSize(unsigned length);
123
124
-private:
125
/// data mit den Daten
126
boost::container::vector<uint8_t> data_;
127
/// Logische Länge
0 commit comments