mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
DiscIO: Make classes final
This commit is contained in:
parent
f8bf35e6f0
commit
301cc5ee63
13 changed files with 14 additions and 14 deletions
|
@ -19,7 +19,7 @@ namespace DiscIO
|
|||
class VolumeDisc;
|
||||
struct Partition;
|
||||
|
||||
class FileInfoGCWii : public FileInfo
|
||||
class FileInfoGCWii final : public FileInfo
|
||||
{
|
||||
public:
|
||||
// None of the constructors take ownership of FST pointers
|
||||
|
@ -84,7 +84,7 @@ private:
|
|||
u32 m_total_file_infos;
|
||||
};
|
||||
|
||||
class FileSystemGCWii : public FileSystem
|
||||
class FileSystemGCWii final : public FileSystem
|
||||
{
|
||||
public:
|
||||
FileSystemGCWii(const VolumeDisc* volume, const Partition& partition);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue