mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
add missing return.
This commit is contained in:
@@ -138,13 +138,13 @@ BinaryWriter& BinaryWriter::operator << (double value)
|
||||
|
||||
BinaryWriter& BinaryWriter::operator << (Int64 value)
|
||||
{
|
||||
write(value, _flipBytes);
|
||||
return write(value, _flipBytes);
|
||||
}
|
||||
|
||||
|
||||
BinaryWriter& BinaryWriter::operator << (UInt64 value)
|
||||
{
|
||||
write(value, _flipBytes);
|
||||
return write(value, _flipBytes);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user