LibGfx/ISOBMFF: Remove prototypes for nonexistent methods

This commit is contained in:
Nico Weber 2024-03-22 11:51:37 -04:00 committed by Tim Schumacher
parent 270d3303ce
commit bdb4f6bd49
Notes: sideshowbarker 2024-07-17 20:19:08 +09:00

View File

@ -19,9 +19,6 @@ public:
ErrorOr<BoxList> read_entire_file();
ErrorOr<BrandIdentifier> get_major_brand();
ErrorOr<Vector<BrandIdentifier>> get_minor_brands();
private:
Reader(MaybeOwned<SeekableStream> stream, size_t size)
: m_stream(move(stream))
@ -29,8 +26,6 @@ private:
{
}
ErrorOr<void> parse_initial_data();
MaybeOwned<SeekableStream> m_stream;
BoxStream m_box_stream;
};