mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 21:34:46 +02:00
Fix initialization warning
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
Version 175:
|
||||
|
||||
* Fix initialization warning
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 174:
|
||||
|
||||
* Fix Fields, FieldsWriter concept docs
|
||||
|
@@ -36,9 +36,9 @@ public:
|
||||
std::unique_ptr<char[]> p(new char[len]);
|
||||
for(std::size_t i = 1; i < len; ++i)
|
||||
{
|
||||
std::array<mutable_buffer, 2> mbs{
|
||||
std::array<mutable_buffer, 2> mbs{{
|
||||
mutable_buffer(p.get(), i),
|
||||
mutable_buffer(p.get() + i, len - i)};
|
||||
mutable_buffer(p.get() + i, len - i)}};
|
||||
for(std::size_t j = 1; j < in.size(); ++j)
|
||||
{
|
||||
for(std::size_t k = 1; k < len; ++k)
|
||||
|
Reference in New Issue
Block a user