mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-24 07:08:53 -05:00
DolReader: Make constructors explicit
This commit is contained in:
parent
927a4a16f8
commit
1876505707
|
|
@ -13,8 +13,8 @@
|
|||
class DolReader final : public BootExecutableReader
|
||||
{
|
||||
public:
|
||||
DolReader(const std::string& filename);
|
||||
DolReader(const std::vector<u8>& buffer);
|
||||
explicit DolReader(const std::string& filename);
|
||||
explicit DolReader(const std::vector<u8>& buffer);
|
||||
~DolReader();
|
||||
|
||||
bool IsValid() const override { return m_is_valid; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user