mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
DolReader: Make constructors explicit
This commit is contained in:
@ -13,8 +13,8 @@
|
|||||||
class DolReader final : public BootExecutableReader
|
class DolReader final : public BootExecutableReader
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
DolReader(const std::string& filename);
|
explicit DolReader(const std::string& filename);
|
||||||
DolReader(const std::vector<u8>& buffer);
|
explicit DolReader(const std::vector<u8>& buffer);
|
||||||
~DolReader();
|
~DolReader();
|
||||||
|
|
||||||
bool IsValid() const override { return m_is_valid; }
|
bool IsValid() const override { return m_is_valid; }
|
||||||
|
Reference in New Issue
Block a user