mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 01:59:02 +00:00
clang-modernize -add-override
This commit is contained in:
parent
c89f04a7c5
commit
f28116b7da
67 changed files with 401 additions and 401 deletions
|
@ -49,10 +49,10 @@ public:
|
|||
static CompressedBlobReader* Create(const char *filename);
|
||||
~CompressedBlobReader();
|
||||
const CompressedBlobHeader &GetHeader() const { return header; }
|
||||
u64 GetDataSize() const { return header.data_size; }
|
||||
u64 GetRawSize() const { return file_size; }
|
||||
u64 GetDataSize() const override { return header.data_size; }
|
||||
u64 GetRawSize() const override { return file_size; }
|
||||
u64 GetBlockCompressedSize(u64 block_num) const;
|
||||
void GetBlock(u64 block_num, u8 *out_ptr);
|
||||
void GetBlock(u64 block_num, u8 *out_ptr) override;
|
||||
private:
|
||||
CompressedBlobReader(const char *filename);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue