mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Fix narrowing in ostream
This commit is contained in:
@ -3,6 +3,7 @@ Version 65:
|
||||
* Enable narrowing warning on msvc cmake
|
||||
* Fix integer types in deflate_stream::bi_reverse
|
||||
* Fix narrowing in static_ostream
|
||||
* Fix narrowing in ostream
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
|
@ -105,7 +105,8 @@ public:
|
||||
{
|
||||
if(! Traits::eq_int_type(ch, Traits::eof()))
|
||||
{
|
||||
Traits::assign(*this->pptr(), ch);
|
||||
Traits::assign(*this->pptr(),
|
||||
static_cast<CharT>(ch));
|
||||
flush(1);
|
||||
prepare();
|
||||
return ch;
|
||||
@ -185,7 +186,8 @@ public:
|
||||
{
|
||||
if(! Traits::eq_int_type(ch, Traits::eof()))
|
||||
{
|
||||
Traits::assign(*this->pptr(), ch);
|
||||
Traits::assign(*this->pptr(),
|
||||
static_cast<CharT>(ch));
|
||||
flush(1);
|
||||
prepare();
|
||||
return ch;
|
||||
|
Reference in New Issue
Block a user