mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Fix a spurious gcc warning
This commit is contained in:
@ -4,6 +4,7 @@ Version 187:
|
||||
* Fix warning in file tests
|
||||
* Fix uninitialized comparison in buffers iterator
|
||||
* Partial support for BOOST_NO_EXCEPTIONS
|
||||
* Fix a spurious gcc warning
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -34,6 +34,8 @@ class buffers_cat_view<Bn...>::const_iterator
|
||||
|
||||
struct past_end
|
||||
{
|
||||
char unused = 0; // make g++8 happy
|
||||
|
||||
operator bool() const noexcept
|
||||
{
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user