AK: Remove unnecessary FIXME comments from Stream.h.

This commit is contained in:
asynts 2020-08-17 19:30:38 +02:00 committed by Andreas Kling
parent bc332aca33
commit a15556638d

View file

@ -156,7 +156,6 @@ public:
return m_bytes[m_offset];
}
// FIXME: Duplicated from AK::BufferStream::read_LEB128_unsigned.
// LEB128 is a variable-length encoding for integers
bool read_LEB128_unsigned(size_t& result)
{
@ -184,7 +183,6 @@ public:
return true;
}
// FIXME: Duplicated from AK::BufferStream::read_LEB128_signed.
// LEB128 is a variable-length encoding for integers
bool read_LEB128_signed(ssize_t& result)
{