mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 02:52:30 +02:00
DolReader: Make constructors explicit
This commit is contained in:
parent
927a4a16f8
commit
1876505707
@ -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; }
|
||||||
|
Loading…
Reference in New Issue
Block a user