diff -r 20ca0a6be175 -r 9b6a0daedfc0 sources/network/bytestream.h --- a/sources/network/bytestream.h Wed Jan 27 14:04:53 2021 +0200 +++ b/sources/network/bytestream.h Wed Jan 27 14:05:39 2021 +0200 @@ -65,7 +65,7 @@ int8_t readByte(); int32_t readLong(); int16_t readShort(); - String readString(); + std::string readString(); float readFloat(); void rewind(); void seek(int position); @@ -76,7 +76,7 @@ void writeFloat(float value); void writeLong(int32_t value); void writeShort(int16_t value); - void writeString(const String& string); + void writeString(const std::string& string); private: ByteArray& m_data;