mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
DolReader: Make constructors explicit
This commit is contained in:
@ -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; }
|
||||
|
Reference in New Issue
Block a user