Fix a minor uninitialized-variable warning.
This commit is contained in:
@@ -43,7 +43,7 @@ namespace Network {
|
|||||||
unsigned char buffer[BUFFER_SIZE];
|
unsigned char buffer[BUFFER_SIZE];
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Compressor() {}
|
Compressor() : buffer() {}
|
||||||
~Compressor() {}
|
~Compressor() {}
|
||||||
|
|
||||||
std::string compress_str( const std::string &input );
|
std::string compress_str( const std::string &input );
|
||||||
|
|||||||
Reference in New Issue
Block a user