mirror of
https://github.com/boostorg/beast.git
synced 2026-08-03 20:14:17 +02:00
Fix -Wmaybe-uninitialized in wsload bench
This commit is contained in:
committed by
Mohammad Nejati
parent
aaf0ef3f58
commit
359ff934bd
@@ -38,7 +38,7 @@ using tcp = boost::asio::ip::tcp; // from <boost/asio/ip/tcp.hpp>
|
||||
|
||||
class test_buffer
|
||||
{
|
||||
char data_[4096];
|
||||
char data_[4096] = {};
|
||||
net::const_buffer b_;
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user