mirror of
https://github.com/boostorg/beast.git
synced 2025-08-02 14:24:31 +02:00
Fix spurious uninitialized warning
This commit is contained in:
@@ -9,6 +9,7 @@ HTTP:
|
||||
* Tidy up basic_string_body
|
||||
* Add vector_body
|
||||
* span, string, vector bodies are public
|
||||
* Fix spurious uninitialized warning
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@@ -518,7 +518,7 @@ protected:
|
||||
string_view& result, error_code& ec)
|
||||
{
|
||||
auto const first = it;
|
||||
char const* token_last;
|
||||
char const* token_last = nullptr;
|
||||
auto p = parse_token_to_eol(
|
||||
it, last, token_last, ec);
|
||||
if(ec)
|
||||
|
Reference in New Issue
Block a user