stream: style
This commit is contained in:
parent
ee53f8234b
commit
96f3bc14e6
10
stream.cpp
10
stream.cpp
@ -24,13 +24,17 @@ using util::stream::bits;
|
|||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
std::ostream&
|
std::ostream&
|
||||||
null_ostream::put (char)
|
null_ostream::put (char)
|
||||||
{ return *this; }
|
{
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
bool
|
bool
|
||||||
null_ostream::good (void) const
|
null_ostream::good (void) const
|
||||||
{ return !bad () && !eof () && !fail (); }
|
{
|
||||||
|
return !bad () && !eof () && !fail ();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
@ -39,7 +43,7 @@ bool null_ostream::eof (void) const { return false; }
|
|||||||
bool null_ostream::fail (void) const { return false; }
|
bool null_ostream::fail (void) const { return false; }
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
bits::bits (uintmax_t _value, unsigned _count):
|
bits::bits (uintmax_t _value, unsigned _count):
|
||||||
value (_value),
|
value (_value),
|
||||||
count (_count)
|
count (_count)
|
||||||
|
Loading…
Reference in New Issue
Block a user