mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 05:17:26 +02:00
Silence spurious warning
This commit is contained in:
@ -2,6 +2,7 @@
|
|||||||
* is_invocable works with move-only types
|
* is_invocable works with move-only types
|
||||||
* Use std::function and reference wrapper
|
* Use std::function and reference wrapper
|
||||||
* Add session_alloc to example/common
|
* Add session_alloc to example/common
|
||||||
|
* Silence spurious warning
|
||||||
|
|
||||||
WebSocket
|
WebSocket
|
||||||
|
|
||||||
|
@ -616,7 +616,7 @@ protected:
|
|||||||
}
|
}
|
||||||
name = make_string(first, p);
|
name = make_string(first, p);
|
||||||
++p; // eat ':'
|
++p; // eat ':'
|
||||||
char const* token_last;
|
char const* token_last = nullptr;
|
||||||
for(;;)
|
for(;;)
|
||||||
{
|
{
|
||||||
// eat leading ' ' and '\t'
|
// eat leading ' ' and '\t'
|
||||||
|
Reference in New Issue
Block a user