From a15556638d996997d37aa941943e4af201b0e6a1 Mon Sep 17 00:00:00 2001 From: asynts Date: Mon, 17 Aug 2020 19:30:38 +0200 Subject: [PATCH] AK: Remove unnecessary FIXME comments from Stream.h. --- AK/Stream.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/AK/Stream.h b/AK/Stream.h index 37d71e1ea4..cd66524cb3 100644 --- a/AK/Stream.h +++ b/AK/Stream.h @@ -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) {